NAV
cURL Python JavaScript Java C#

Self-hosted API v4.7.0

Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.

Default

healthProxy

Code samples

# You can also use wget
curl -X GET /${microblink.health.custom.url} \
  -H 'Accept: application/json'

GET /${microblink.health.custom.url} HTTP/1.1

Accept: application/json


const headers = {
  'Accept':'application/json'
};

fetch('/${microblink.health.custom.url}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

require 'rest-client'
require 'json'

headers = {
  'Accept' => 'application/json'
}

result = RestClient.get '/${microblink.health.custom.url}',
  params: {
  }, headers: headers

p JSON.parse(result)

import requests
headers = {
  'Accept': 'application/json'
}

r = requests.get('/${microblink.health.custom.url}', headers = headers)

print(r.json())

<?php

require 'vendor/autoload.php';

$headers = array(
    'Accept' => 'application/json',
);

$client = new \GuzzleHttp\Client();

// Define array of request body.
$request_body = array();

try {
    $response = $client->request('GET','/${microblink.health.custom.url}', array(
        'headers' => $headers,
        'json' => $request_body,
       )
    );
    print_r($response->getBody()->getContents());
 }
 catch (\GuzzleHttp\Exception\BadResponseException $e) {
    // handle exception or api errors.
    print_r($e->getMessage());
 }

 // ...

URL obj = new URL("/${microblink.health.custom.url}");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
    new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
    response.append(inputLine);
}
in.close();
System.out.println(response.toString());

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("GET", "/${microblink.health.custom.url}", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

GET /${microblink.health.custom.url}

Example responses

200 Response

[
  {
    "name": "string",
    "status": {
      "name": "string",
      "description": "string",
      "operational": true,
      "severity": 0
    },
    "details": null
  }
]

Responses

Status Meaning Description Schema
200 OK healthProxy 200 response Inline

Response Schema

Status Code 200

Name Type Required Restrictions Description
anonymous [HealthResult] false none none
» name string false none none
» status HealthStatus false none none
»» name string true none none
»» description string¦null true none none
»» operational boolean¦null true none none
»» severity integer(int32)¦null true none none
» details any false none none

Recognition endpoints

Barcode

Code samples

# You can also use wget
curl -X POST /barcode \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'X-ClientCustomerId: string' \
  -H 'mb-api-key: string'

POST /barcode HTTP/1.1

Content-Type: application/json
Accept: application/json
X-ClientCustomerId: string
mb-api-key: string

const inputBody = '{
  "autoScaleDetection": true,
  "nullQuietZoneAllowed": false,
  "readCode39AsExtendedData": false,
  "scanCode128": false,
  "scanCode39": false,
  "scanEan13": false,
  "scanEan8": false,
  "scanInverse": false,
  "scanItf": false,
  "scanPdf417": false,
  "scanQrCode": false,
  "scanUncertain": true,
  "scanUpca": false,
  "scanUpce": false,
  "slowerThoroughScan": false,
  "image": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "traceId": "string"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'X-ClientCustomerId':'string',
  'mb-api-key':'string'
};

fetch('/barcode',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

require 'rest-client'
require 'json'

headers = {
  'Content-Type' => 'application/json',
  'Accept' => 'application/json',
  'X-ClientCustomerId' => 'string',
  'mb-api-key' => 'string'
}

result = RestClient.post '/barcode',
  params: {
  }, headers: headers

p JSON.parse(result)

import requests
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'X-ClientCustomerId': 'string',
  'mb-api-key': 'string'
}

r = requests.post('/barcode', headers = headers)

print(r.json())

<?php

require 'vendor/autoload.php';

$headers = array(
    'Content-Type' => 'application/json',
    'Accept' => 'application/json',
    'X-ClientCustomerId' => 'string',
    'mb-api-key' => 'string',
);

$client = new \GuzzleHttp\Client();

// Define array of request body.
$request_body = array();

try {
    $response = $client->request('POST','/barcode', array(
        'headers' => $headers,
        'json' => $request_body,
       )
    );
    print_r($response->getBody()->getContents());
 }
 catch (\GuzzleHttp\Exception\BadResponseException $e) {
    // handle exception or api errors.
    print_r($e->getMessage());
 }

 // ...

URL obj = new URL("/barcode");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("POST");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
    new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
    response.append(inputLine);
}
in.close();
System.out.println(response.toString());

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Content-Type": []string{"application/json"},
        "Accept": []string{"application/json"},
        "X-ClientCustomerId": []string{"string"},
        "mb-api-key": []string{"string"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("POST", "/barcode", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

POST /barcode

Body parameter

{
  "autoScaleDetection": true,
  "nullQuietZoneAllowed": false,
  "readCode39AsExtendedData": false,
  "scanCode128": false,
  "scanCode39": false,
  "scanEan13": false,
  "scanEan8": false,
  "scanInverse": false,
  "scanItf": false,
  "scanPdf417": false,
  "scanQrCode": false,
  "scanUncertain": true,
  "scanUpca": false,
  "scanUpce": false,
  "slowerThoroughScan": false,
  "image": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "traceId": "string"
}

Parameters

Name In Type Required Description
X-ClientCustomerId header string false none
mb-api-key header string false none
body body BarcodeRequest true none

Example responses

200 Response

{
  "traceId": "string",
  "executionId": "string",
  "finishTime": "2019-08-24T14:15:22Z",
  "startTime": "2019-08-24T14:15:22Z",
  "data": {
    "barcodeType": "NONE",
    "rawData": "string",
    "stringData": "string",
    "uncertain": true,
    "detectionPoints": {
      "points": [
        {
          "x": 0,
          "y": 0
        }
      ]
    },
    "recognitionStatus": "EMPTY"
  }
}

Responses

Status Meaning Description Schema
200 OK Ok BarcodeEndpointResponse
400 Bad Request Bad Request DefaultResponse
403 Forbidden Forbidden DefaultResponse
500 Internal Server Error Internal Server Error DefaultResponse

Code samples

# You can also use wget
curl -X POST /blinkcard \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json'

POST /blinkcard HTTP/1.1

Content-Type: application/json
Accept: application/json

const inputBody = '{
  "extractIban": true,
  "extractExpiryDate": true,
  "extractOwner": true,
  "extractCvv": true,
  "returnFullDocumentImage": false,
  "handScaleThreshold": 0.1,
  "handDocumentOverlapThreshold": 0.1,
  "screenAnalysisMatchLevel": "DISABLED",
  "photocopyAnalysisMatchLevel": "DISABLED",
  "anonymizationSettings": {
    "cardNumberAnonymizationSettings": {
      "anonymizationMode": "NONE",
      "prefixDigitsVisible": 0,
      "suffixDigitsVisible": 0
    },
    "cardNumberPrefixAnonymizationMode": "NONE",
    "cvvAnonymizationMode": "NONE",
    "ibanAnonymizationMode": "NONE",
    "ownerAnonymizationMode": "NONE",
    "fallbackAnonymization": false
  },
  "imageFormat": "PNG",
  "skipFramesWithBlur": true,
  "allowInvalidCardNumber": false,
  "cardNumberSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "otherSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "traceId": "string"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/blinkcard',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

require 'rest-client'
require 'json'

headers = {
  'Content-Type' => 'application/json',
  'Accept' => 'application/json'
}

result = RestClient.post '/blinkcard',
  params: {
  }, headers: headers

p JSON.parse(result)

import requests
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

r = requests.post('/blinkcard', headers = headers)

print(r.json())

<?php

require 'vendor/autoload.php';

$headers = array(
    'Content-Type' => 'application/json',
    'Accept' => 'application/json',
);

$client = new \GuzzleHttp\Client();

// Define array of request body.
$request_body = array();

try {
    $response = $client->request('POST','/blinkcard', array(
        'headers' => $headers,
        'json' => $request_body,
       )
    );
    print_r($response->getBody()->getContents());
 }
 catch (\GuzzleHttp\Exception\BadResponseException $e) {
    // handle exception or api errors.
    print_r($e->getMessage());
 }

 // ...

URL obj = new URL("/blinkcard");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("POST");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
    new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
    response.append(inputLine);
}
in.close();
System.out.println(response.toString());

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Content-Type": []string{"application/json"},
        "Accept": []string{"application/json"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("POST", "/blinkcard", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

POST /blinkcard

Body parameter

{
  "extractIban": true,
  "extractExpiryDate": true,
  "extractOwner": true,
  "extractCvv": true,
  "returnFullDocumentImage": false,
  "handScaleThreshold": 0.1,
  "handDocumentOverlapThreshold": 0.1,
  "screenAnalysisMatchLevel": "DISABLED",
  "photocopyAnalysisMatchLevel": "DISABLED",
  "anonymizationSettings": {
    "cardNumberAnonymizationSettings": {
      "anonymizationMode": "NONE",
      "prefixDigitsVisible": 0,
      "suffixDigitsVisible": 0
    },
    "cardNumberPrefixAnonymizationMode": "NONE",
    "cvvAnonymizationMode": "NONE",
    "ibanAnonymizationMode": "NONE",
    "ownerAnonymizationMode": "NONE",
    "fallbackAnonymization": false
  },
  "imageFormat": "PNG",
  "skipFramesWithBlur": true,
  "allowInvalidCardNumber": false,
  "cardNumberSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "otherSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "traceId": "string"
}
Name In Type Required Description
body body BlinkCardRequest true none

Example responses

200 Response

{
  "traceId": "string",
  "executionId": "string",
  "finishTime": "2019-08-24T14:15:22Z",
  "startTime": "2019-08-24T14:15:22Z",
  "data": {
    "cardIssuer": "ISSUER_OTHER",
    "cardNumber": "string",
    "cardNumberValid": true,
    "cardNumberPrefix": "string",
    "iban": "string",
    "cvv": "string",
    "expiryDate": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "owner": "string",
    "firstSideFullDocumentImage": "string",
    "secondSideFullDocumentImage": "string",
    "firstSideBlurred": true,
    "secondSideBlurred": true,
    "firstSideAnonymized": true,
    "secondSideAnonymized": true,
    "documentLivenessCheck": {
      "front": {
        "screenCheck": {
          "result": "NOT_PERFORMED",
          "matchLevel": "DISABLED"
        },
        "photocopyCheck": {
          "result": "NOT_PERFORMED",
          "matchLevel": "DISABLED"
        },
        "handPresenceCheck": "NOT_PERFORMED"
      },
      "back": {
        "screenCheck": {
          "result": "NOT_PERFORMED",
          "matchLevel": "DISABLED"
        },
        "photocopyCheck": {
          "result": "NOT_PERFORMED",
          "matchLevel": "DISABLED"
        },
        "handPresenceCheck": "NOT_PERFORMED"
      }
    },
    "processingStatus": "SUCCESS",
    "scanningFirstSideDone": true,
    "recognitionStatus": "EMPTY"
  }
}
Status Meaning Description Schema
200 OK Ok BlinkCardEndpointResponse
400 Bad Request Bad Request DefaultResponse
403 Forbidden Forbidden DefaultResponse
500 Internal Server Error Internal Server Error DefaultResponse

BlinkIdMultiSide

Code samples

# You can also use wget
curl -X POST /blinkid-multi-side \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'X-ClientCustomerId: string' \
  -H 'mb-api-key: string'

POST /blinkid-multi-side HTTP/1.1

Content-Type: application/json
Accept: application/json
X-ClientCustomerId: string
mb-api-key: string

const inputBody = '{
  "returnFullDocumentImage": false,
  "returnFaceImage": false,
  "returnSignatureImage": false,
  "skipImagesWithBlur": true,
  "scanUnsupportedSecondSide": false,
  "enableCharacterValidation": true,
  "enableBarcodeScanOnly": false,
  "anonymizationMode": "FULL_RESULT",
  "customDocumentAnonymizationSettings": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "documentNumberAnonymizationSettings": {
        "prefixDigitsVisible": 0,
        "suffixDigitsVisible": 0
      }
    }
  ],
  "customDocumentRules": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        {
          "fieldType": "ADDITIONAL_ADDRESS_INFORMATION",
          "alphabetType": "LATIN"
        }
      ]
    }
  ],
  "imageFormat": "PNG",
  "imageFirstSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "imageSecondSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "ageLimit": 0,
  "scanCroppedDocumentImage": false,
  "maxAllowedMismatchesPerField": 0,
  "allowUncertainFirstSideScan": true,
  "scanPassportDataPageOnly": true,
  "skipImagesWithInadequateLightingConditions": true,
  "skipImagesOccludedByHand": true,
  "traceId": "string"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'X-ClientCustomerId':'string',
  'mb-api-key':'string'
};

fetch('/blinkid-multi-side',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

require 'rest-client'
require 'json'

headers = {
  'Content-Type' => 'application/json',
  'Accept' => 'application/json',
  'X-ClientCustomerId' => 'string',
  'mb-api-key' => 'string'
}

result = RestClient.post '/blinkid-multi-side',
  params: {
  }, headers: headers

p JSON.parse(result)

import requests
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'X-ClientCustomerId': 'string',
  'mb-api-key': 'string'
}

r = requests.post('/blinkid-multi-side', headers = headers)

print(r.json())

<?php

require 'vendor/autoload.php';

$headers = array(
    'Content-Type' => 'application/json',
    'Accept' => 'application/json',
    'X-ClientCustomerId' => 'string',
    'mb-api-key' => 'string',
);

$client = new \GuzzleHttp\Client();

// Define array of request body.
$request_body = array();

try {
    $response = $client->request('POST','/blinkid-multi-side', array(
        'headers' => $headers,
        'json' => $request_body,
       )
    );
    print_r($response->getBody()->getContents());
 }
 catch (\GuzzleHttp\Exception\BadResponseException $e) {
    // handle exception or api errors.
    print_r($e->getMessage());
 }

 // ...

URL obj = new URL("/blinkid-multi-side");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("POST");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
    new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
    response.append(inputLine);
}
in.close();
System.out.println(response.toString());

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Content-Type": []string{"application/json"},
        "Accept": []string{"application/json"},
        "X-ClientCustomerId": []string{"string"},
        "mb-api-key": []string{"string"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("POST", "/blinkid-multi-side", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

POST /blinkid-multi-side

Scanning both sides of supported documents or MRZ on passports, visas and other documents.

Body parameter

{
  "returnFullDocumentImage": false,
  "returnFaceImage": false,
  "returnSignatureImage": false,
  "skipImagesWithBlur": true,
  "scanUnsupportedSecondSide": false,
  "enableCharacterValidation": true,
  "enableBarcodeScanOnly": false,
  "anonymizationMode": "FULL_RESULT",
  "customDocumentAnonymizationSettings": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "documentNumberAnonymizationSettings": {
        "prefixDigitsVisible": 0,
        "suffixDigitsVisible": 0
      }
    }
  ],
  "customDocumentRules": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        {
          "fieldType": "ADDITIONAL_ADDRESS_INFORMATION",
          "alphabetType": "LATIN"
        }
      ]
    }
  ],
  "imageFormat": "PNG",
  "imageFirstSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "imageSecondSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "ageLimit": 0,
  "scanCroppedDocumentImage": false,
  "maxAllowedMismatchesPerField": 0,
  "allowUncertainFirstSideScan": true,
  "scanPassportDataPageOnly": true,
  "skipImagesWithInadequateLightingConditions": true,
  "skipImagesOccludedByHand": true,
  "traceId": "string"
}

Parameters

Name In Type Required Description
X-ClientCustomerId header string false none
mb-api-key header string false none
body body BlinkIdMultiSideRequest true none

Example responses

200 Response

{
  "traceId": "string",
  "executionId": "string",
  "finishTime": "2019-08-24T14:15:22Z",
  "startTime": "2019-08-24T14:15:22Z",
  "data": {
    "firstName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "lastName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "address": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfIssue": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "documentNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sex": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "driverLicenseDetailedInfo": {
      "restrictions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "endorsements": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClass": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "conditions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClassesInfo": [
        {
          "vehicleClass": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "licenceType": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "effectiveDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "expiryDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          }
        }
      ]
    },
    "bloodType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sponsor": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "visaType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullDocumentFirstSideImage": {
      "image": "string"
    },
    "fullDocumentSecondSideImage": {
      "image": "string"
    },
    "faceImage": {
      "image": "string",
      "location": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        }
      },
      "side": "FIRST"
    },
    "signatureImage": {
      "image": "string",
      "location": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        }
      },
      "side": "FIRST"
    },
    "documentSubtype": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "remarks": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residencePermitType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "manufacturingYear": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "eligibilityCategory": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "specificDocumentValidity": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dependentsInfo": [
      {
        "dateOfBirth": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "sex": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "documentNumber": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "fullName": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      }
    ],
    "vehicleOwner": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "certificateNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "countryCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationalInsuranceNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalNameInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalOptionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "placeOfBirth": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationality": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "race": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "religion": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "profession": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maritalStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residentialStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "employer": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "personalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentOptionalAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "issuingAuthority": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fathersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mothersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfEntry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "localityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maidenName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityOfRegistration": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "pollingStationCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "registrationCenterCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sectionCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mrzData": {
      "rawMrzString": "string",
      "documentCode": "string",
      "issuer": "string",
      "documentNumber": "string",
      "opt1": "string",
      "opt2": "string",
      "gender": "string",
      "nationality": "string",
      "primaryId": "string",
      "secondaryId": "string",
      "verified": true,
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "documentType": "UNKNOWN",
      "issuerName": "string",
      "nationalityName": "string"
    },
    "localizedName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dataMatchResult": {
      "dateOfBirth": "NOT_PERFORMED",
      "dateOfExpiry": "NOT_PERFORMED",
      "documentNumber": "NOT_PERFORMED",
      "documentAdditionalNumber": "NOT_PERFORMED",
      "documentOptionalAdditionalNumber": "NOT_PERFORMED",
      "personalIdNumber": "NOT_PERFORMED",
      "dataMatchResult": "NOT_PERFORMED"
    },
    "dateOfExpiryPermanent": true,
    "scanningFirstSideDone": true,
    "additionalPersonalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "firstSideViz": {
      "firstName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "lastName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fullName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentSubtype": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "remarks": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residencePermitType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "manufacturingYear": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "eligibilityCategory": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "specificDocumentValidity": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dependentsInfo": [
        {
          "dateOfBirth": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "sex": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "documentNumber": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "fullName": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        }
      ],
      "vehicleOwner": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "certificateNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "countryCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationalInsuranceNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalNameInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "localizedName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "address": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalOptionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "placeOfBirth": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationality": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "race": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "religion": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "profession": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maritalStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residentialStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "employer": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sex": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiryPermanent": true,
      "documentNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "personalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalPersonalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentOptionalAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "issuingAuthority": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fathersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "mothersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfEntry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "localityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maidenName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityOfRegistration": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "pollingStationCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "registrationCenterCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sectionCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "driverLicenseDetailedInfo": {
        "restrictions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "endorsements": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClass": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "conditions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClassesInfo": [
          {
            "vehicleClass": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "licenceType": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            }
          }
        ]
      },
      "bloodType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sponsor": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "visaType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "secondSideViz": {
      "firstName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "lastName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fullName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentSubtype": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "remarks": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residencePermitType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "manufacturingYear": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "eligibilityCategory": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "specificDocumentValidity": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dependentsInfo": [
        {
          "dateOfBirth": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "sex": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "documentNumber": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "fullName": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        }
      ],
      "vehicleOwner": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "certificateNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "countryCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationalInsuranceNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalNameInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "localizedName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "address": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalOptionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "placeOfBirth": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationality": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "race": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "religion": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "profession": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maritalStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residentialStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "employer": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sex": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiryPermanent": true,
      "documentNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "personalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalPersonalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentOptionalAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "issuingAuthority": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fathersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "mothersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfEntry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "localityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maidenName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityOfRegistration": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "pollingStationCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "registrationCenterCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sectionCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "driverLicenseDetailedInfo": {
        "restrictions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "endorsements": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClass": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "conditions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClassesInfo": [
          {
            "vehicleClass": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "licenceType": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            }
          }
        ]
      },
      "bloodType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sponsor": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "visaType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "barcode": {
      "rawDataBase64": "string",
      "stringData": "string",
      "firstName": "string",
      "lastName": "string",
      "middleName": "string",
      "fullName": "string",
      "additionalNameInformation": "string",
      "address": "string",
      "placeOfBirth": "string",
      "nationality": "string",
      "race": "string",
      "religion": "string",
      "profession": "string",
      "maritalStatus": "string",
      "residentialStatus": "string",
      "employer": "string",
      "sex": "string",
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "documentNumber": "string",
      "personalIdNumber": "string",
      "documentAdditionalNumber": "string",
      "issuingAuthority": "string",
      "addressDetailedInfo": {
        "street": "string",
        "postalCode": "string",
        "city": "string",
        "jurisdiction": "string"
      },
      "driverLicenseDetailedInfo": {
        "restrictions": "string",
        "endorsements": "string",
        "vehicleClass": "string",
        "conditions": "string",
        "vehicleClassesInfo": [
          {
            "vehicleClass": "string",
            "licenceType": "string",
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": "string"
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": "string"
            }
          }
        ]
      },
      "extendedElements": [
        {
          "key": "BARCODE_ELEMENT_KEY_DOCUMENT_TYPE",
          "value": "string"
        }
      ],
      "parsed": true
    },
    "firstSideImageAnalysisResult": {
      "blurDetectionStatus": "NOT_AVAILABLE",
      "glareDetectionStatus": "NOT_AVAILABLE",
      "documentImageColorStatus": "NOT_AVAILABLE",
      "documentImageMoireStatus": "NOT_AVAILABLE",
      "faceDetectionStatus": "NOT_AVAILABLE",
      "mrzDetectionStatus": "NOT_AVAILABLE",
      "barcodeDetectionStatus": "NOT_AVAILABLE",
      "documentOrientation": "HORIZONTAL",
      "documentRotation": "NOT_AVAILABLE",
      "realIDDetectionStatus": "NOT_AVAILABLE",
      "documentHandOcclusionStatus": "NOT_AVAILABLE",
      "documentLightingStatus": "NOT_AVAILABLE"
    },
    "secondSideImageAnalysisResult": {
      "blurDetectionStatus": "NOT_AVAILABLE",
      "glareDetectionStatus": "NOT_AVAILABLE",
      "documentImageColorStatus": "NOT_AVAILABLE",
      "documentImageMoireStatus": "NOT_AVAILABLE",
      "faceDetectionStatus": "NOT_AVAILABLE",
      "mrzDetectionStatus": "NOT_AVAILABLE",
      "barcodeDetectionStatus": "NOT_AVAILABLE",
      "documentOrientation": "HORIZONTAL",
      "documentRotation": "NOT_AVAILABLE",
      "realIDDetectionStatus": "NOT_AVAILABLE",
      "documentHandOcclusionStatus": "NOT_AVAILABLE",
      "documentLightingStatus": "NOT_AVAILABLE"
    },
    "processingStatus": "SUCCESS",
    "firstSideProcessingStatus": "SUCCESS",
    "secondSideProcessingStatus": "SUCCESS",
    "recognitionMode": "NONE",
    "documentClassInfo": {
      "country": "COUNTRY_NONE",
      "region": "REGION_NONE",
      "type": "TYPE_NONE",
      "countryName": "string",
      "isoAlpha3CountryCode": "string",
      "isoAlpha2CountryCode": "string",
      "isoNumericCountryCode": "string"
    },
    "recognitionStatus": "EMPTY",
    "firstSideAdditionalProcessingInfo": {
      "missingMandatoryFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "invalidCharacterFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "extraPresentFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "imageExtractionFailures": [
        "FULL_DOCUMENT"
      ]
    },
    "secondSideAdditionalProcessingInfo": {
      "missingMandatoryFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "invalidCharacterFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "extraPresentFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "imageExtractionFailures": [
        "FULL_DOCUMENT"
      ]
    },
    "isBelowAgeLimit": true,
    "age": 0
  }
}

Responses

Status Meaning Description Schema
200 OK Ok BlinkIdMultiSideEndpointResponse
400 Bad Request Bad Request DefaultResponse
403 Forbidden Forbidden DefaultResponse
500 Internal Server Error Internal Server Error DefaultResponse

BlinkIdSingleSide

Code samples

# You can also use wget
curl -X POST /blinkid-single-side \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'X-ClientCustomerId: string' \
  -H 'mb-api-key: string'

POST /blinkid-single-side HTTP/1.1

Content-Type: application/json
Accept: application/json
X-ClientCustomerId: string
mb-api-key: string

const inputBody = '{
  "returnFullDocumentImage": false,
  "returnFaceImage": false,
  "returnSignatureImage": false,
  "skipImagesWithBlur": true,
  "enableCharacterValidation": true,
  "enableBarcodeScanOnly": false,
  "anonymizationMode": "FULL_RESULT",
  "customDocumentAnonymizationSettings": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "documentNumberAnonymizationSettings": {
        "prefixDigitsVisible": 0,
        "suffixDigitsVisible": 0
      }
    }
  ],
  "customDocumentRules": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        {
          "fieldType": "ADDITIONAL_ADDRESS_INFORMATION",
          "alphabetType": "LATIN"
        }
      ]
    }
  ],
  "imageFormat": "PNG",
  "ageLimit": 0,
  "image": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "scanCroppedDocumentImage": false,
  "skipImagesWithInadequateLightingConditions": false,
  "skipImagesOccludedByHand": false,
  "traceId": "string"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'X-ClientCustomerId':'string',
  'mb-api-key':'string'
};

fetch('/blinkid-single-side',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

require 'rest-client'
require 'json'

headers = {
  'Content-Type' => 'application/json',
  'Accept' => 'application/json',
  'X-ClientCustomerId' => 'string',
  'mb-api-key' => 'string'
}

result = RestClient.post '/blinkid-single-side',
  params: {
  }, headers: headers

p JSON.parse(result)

import requests
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'X-ClientCustomerId': 'string',
  'mb-api-key': 'string'
}

r = requests.post('/blinkid-single-side', headers = headers)

print(r.json())

<?php

require 'vendor/autoload.php';

$headers = array(
    'Content-Type' => 'application/json',
    'Accept' => 'application/json',
    'X-ClientCustomerId' => 'string',
    'mb-api-key' => 'string',
);

$client = new \GuzzleHttp\Client();

// Define array of request body.
$request_body = array();

try {
    $response = $client->request('POST','/blinkid-single-side', array(
        'headers' => $headers,
        'json' => $request_body,
       )
    );
    print_r($response->getBody()->getContents());
 }
 catch (\GuzzleHttp\Exception\BadResponseException $e) {
    // handle exception or api errors.
    print_r($e->getMessage());
 }

 // ...

URL obj = new URL("/blinkid-single-side");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("POST");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
    new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
    response.append(inputLine);
}
in.close();
System.out.println(response.toString());

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Content-Type": []string{"application/json"},
        "Accept": []string{"application/json"},
        "X-ClientCustomerId": []string{"string"},
        "mb-api-key": []string{"string"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("POST", "/blinkid-single-side", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

POST /blinkid-single-side

Scanning the front side of supported documents or MRZ on passports, visas and other documents.

Body parameter

{
  "returnFullDocumentImage": false,
  "returnFaceImage": false,
  "returnSignatureImage": false,
  "skipImagesWithBlur": true,
  "enableCharacterValidation": true,
  "enableBarcodeScanOnly": false,
  "anonymizationMode": "FULL_RESULT",
  "customDocumentAnonymizationSettings": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "documentNumberAnonymizationSettings": {
        "prefixDigitsVisible": 0,
        "suffixDigitsVisible": 0
      }
    }
  ],
  "customDocumentRules": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        {
          "fieldType": "ADDITIONAL_ADDRESS_INFORMATION",
          "alphabetType": "LATIN"
        }
      ]
    }
  ],
  "imageFormat": "PNG",
  "ageLimit": 0,
  "image": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "scanCroppedDocumentImage": false,
  "skipImagesWithInadequateLightingConditions": false,
  "skipImagesOccludedByHand": false,
  "traceId": "string"
}

Parameters

Name In Type Required Description
X-ClientCustomerId header string false none
mb-api-key header string false none
body body BlinkIdSingleSideRequest true none

Example responses

200 Response

{
  "traceId": "string",
  "executionId": "string",
  "finishTime": "2019-08-24T14:15:22Z",
  "startTime": "2019-08-24T14:15:22Z",
  "data": {
    "firstName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "lastName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "address": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfIssue": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "documentNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sex": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "driverLicenseDetailedInfo": {
      "restrictions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "endorsements": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClass": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "conditions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClassesInfo": [
        {
          "vehicleClass": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "licenceType": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "effectiveDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "expiryDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          }
        }
      ]
    },
    "bloodType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sponsor": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "visaType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullDocumentImage": {
      "image": "string"
    },
    "faceImage": {
      "image": "string",
      "location": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        }
      },
      "side": "FIRST"
    },
    "signatureImage": {
      "image": "string",
      "location": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        }
      },
      "side": "FIRST"
    },
    "documentSubtype": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "remarks": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residencePermitType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "manufacturingYear": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "eligibilityCategory": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "specificDocumentValidity": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dependentsInfo": [
      {
        "dateOfBirth": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "sex": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "documentNumber": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "fullName": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      }
    ],
    "vehicleOwner": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "certificateNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "countryCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationalInsuranceNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalNameInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalOptionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "placeOfBirth": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationality": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "race": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "religion": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "profession": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maritalStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residentialStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "employer": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "personalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentOptionalAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "issuingAuthority": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fathersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mothersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfEntry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "localityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maidenName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityOfRegistration": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "pollingStationCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "registrationCenterCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sectionCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mrzData": {
      "rawMrzString": "string",
      "documentCode": "string",
      "issuer": "string",
      "documentNumber": "string",
      "opt1": "string",
      "opt2": "string",
      "gender": "string",
      "nationality": "string",
      "primaryId": "string",
      "secondaryId": "string",
      "verified": true,
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "documentType": "UNKNOWN",
      "issuerName": "string",
      "nationalityName": "string"
    },
    "localizedName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfExpiryPermanent": true,
    "additionalPersonalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "viz": {
      "firstName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "lastName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fullName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentSubtype": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "remarks": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residencePermitType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "manufacturingYear": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "eligibilityCategory": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "specificDocumentValidity": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dependentsInfo": [
        {
          "dateOfBirth": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "sex": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "documentNumber": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "fullName": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        }
      ],
      "vehicleOwner": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "certificateNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "countryCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationalInsuranceNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalNameInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "localizedName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "address": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalOptionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "placeOfBirth": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationality": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "race": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "religion": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "profession": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maritalStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residentialStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "employer": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sex": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiryPermanent": true,
      "documentNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "personalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalPersonalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentOptionalAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "issuingAuthority": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fathersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "mothersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfEntry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "localityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maidenName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityOfRegistration": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "pollingStationCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "registrationCenterCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sectionCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "driverLicenseDetailedInfo": {
        "restrictions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "endorsements": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClass": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "conditions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClassesInfo": [
          {
            "vehicleClass": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "licenceType": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            }
          }
        ]
      },
      "bloodType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sponsor": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "visaType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "barcode": {
      "rawDataBase64": "string",
      "stringData": "string",
      "firstName": "string",
      "lastName": "string",
      "middleName": "string",
      "fullName": "string",
      "additionalNameInformation": "string",
      "address": "string",
      "placeOfBirth": "string",
      "nationality": "string",
      "race": "string",
      "religion": "string",
      "profession": "string",
      "maritalStatus": "string",
      "residentialStatus": "string",
      "employer": "string",
      "sex": "string",
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "documentNumber": "string",
      "personalIdNumber": "string",
      "documentAdditionalNumber": "string",
      "issuingAuthority": "string",
      "addressDetailedInfo": {
        "street": "string",
        "postalCode": "string",
        "city": "string",
        "jurisdiction": "string"
      },
      "driverLicenseDetailedInfo": {
        "restrictions": "string",
        "endorsements": "string",
        "vehicleClass": "string",
        "conditions": "string",
        "vehicleClassesInfo": [
          {
            "vehicleClass": "string",
            "licenceType": "string",
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": "string"
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": "string"
            }
          }
        ]
      },
      "extendedElements": [
        {
          "key": "BARCODE_ELEMENT_KEY_DOCUMENT_TYPE",
          "value": "string"
        }
      ],
      "parsed": true
    },
    "imageAnalysisResult": {
      "blurDetectionStatus": "NOT_AVAILABLE",
      "glareDetectionStatus": "NOT_AVAILABLE",
      "documentImageColorStatus": "NOT_AVAILABLE",
      "documentImageMoireStatus": "NOT_AVAILABLE",
      "faceDetectionStatus": "NOT_AVAILABLE",
      "mrzDetectionStatus": "NOT_AVAILABLE",
      "barcodeDetectionStatus": "NOT_AVAILABLE",
      "documentOrientation": "HORIZONTAL",
      "documentRotation": "NOT_AVAILABLE",
      "realIDDetectionStatus": "NOT_AVAILABLE",
      "documentHandOcclusionStatus": "NOT_AVAILABLE",
      "documentLightingStatus": "NOT_AVAILABLE"
    },
    "processingStatus": "SUCCESS",
    "recognitionMode": "NONE",
    "documentClassInfo": {
      "country": "COUNTRY_NONE",
      "region": "REGION_NONE",
      "type": "TYPE_NONE",
      "countryName": "string",
      "isoAlpha3CountryCode": "string",
      "isoAlpha2CountryCode": "string",
      "isoNumericCountryCode": "string"
    },
    "recognitionStatus": "EMPTY",
    "additionalProcessingInfo": {
      "missingMandatoryFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "invalidCharacterFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "extraPresentFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "imageExtractionFailures": [
        "FULL_DOCUMENT"
      ]
    },
    "isBelowAgeLimit": true,
    "age": 0
  }
}

Responses

Status Meaning Description Schema
200 OK Ok BlinkIdSingleSideEndpointResponse
400 Bad Request Bad Request DefaultResponse
403 Forbidden Forbidden DefaultResponse
500 Internal Server Error Internal Server Error DefaultResponse

Management Endpoints

getHealth

Code samples

# You can also use wget
curl -X GET /health \
  -H 'Accept: application/json'

GET /health HTTP/1.1

Accept: application/json


const headers = {
  'Accept':'application/json'
};

fetch('/health',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

require 'rest-client'
require 'json'

headers = {
  'Accept' => 'application/json'
}

result = RestClient.get '/health',
  params: {
  }, headers: headers

p JSON.parse(result)

import requests
headers = {
  'Accept': 'application/json'
}

r = requests.get('/health', headers = headers)

print(r.json())

<?php

require 'vendor/autoload.php';

$headers = array(
    'Accept' => 'application/json',
);

$client = new \GuzzleHttp\Client();

// Define array of request body.
$request_body = array();

try {
    $response = $client->request('GET','/health', array(
        'headers' => $headers,
        'json' => $request_body,
       )
    );
    print_r($response->getBody()->getContents());
 }
 catch (\GuzzleHttp\Exception\BadResponseException $e) {
    // handle exception or api errors.
    print_r($e->getMessage());
 }

 // ...

URL obj = new URL("/health");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
    new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
    response.append(inputLine);
}
in.close();
System.out.println(response.toString());

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("GET", "/health", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

GET /health

Example responses

200 Response

[
  {
    "name": "string",
    "status": {
      "name": "string",
      "description": "string",
      "operational": true,
      "severity": 0
    },
    "details": null
  }
]

Responses

Status Meaning Description Schema
200 OK getHealth 200 response Inline

Response Schema

Status Code 200

Name Type Required Restrictions Description
anonymous [HealthResult] false none none
» name string false none none
» status HealthStatus false none none
»» name string true none none
»» description string¦null true none none
»» operational boolean¦null true none none
»» severity integer(int32)¦null true none none
» details any false none none

getHealth_1

Code samples

# You can also use wget
curl -X GET /health/{selector} \
  -H 'Accept: application/json'

GET /health/{selector} HTTP/1.1

Accept: application/json


const headers = {
  'Accept':'application/json'
};

fetch('/health/{selector}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

require 'rest-client'
require 'json'

headers = {
  'Accept' => 'application/json'
}

result = RestClient.get '/health/{selector}',
  params: {
  }, headers: headers

p JSON.parse(result)

import requests
headers = {
  'Accept': 'application/json'
}

r = requests.get('/health/{selector}', headers = headers)

print(r.json())

<?php

require 'vendor/autoload.php';

$headers = array(
    'Accept' => 'application/json',
);

$client = new \GuzzleHttp\Client();

// Define array of request body.
$request_body = array();

try {
    $response = $client->request('GET','/health/{selector}', array(
        'headers' => $headers,
        'json' => $request_body,
       )
    );
    print_r($response->getBody()->getContents());
 }
 catch (\GuzzleHttp\Exception\BadResponseException $e) {
    // handle exception or api errors.
    print_r($e->getMessage());
 }

 // ...

URL obj = new URL("/health/{selector}");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
    new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
    response.append(inputLine);
}
in.close();
System.out.println(response.toString());

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("GET", "/health/{selector}", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

GET /health/{selector}

Parameters

Name In Type Required Description
selector path HealthCheckType true none

Enumerated Values

Parameter Value
selector LIVENESS
selector READINESS

Example responses

200 Response

[
  {
    "name": "string",
    "status": {
      "name": "string",
      "description": "string",
      "operational": true,
      "severity": 0
    },
    "details": null
  }
]

Responses

Status Meaning Description Schema
200 OK getHealth_1 200 response Inline

Response Schema

Status Code 200

Name Type Required Restrictions Description
anonymous [HealthResult] false none none
» name string false none none
» status HealthStatus false none none
»» name string true none none
»» description string¦null true none none
»» operational boolean¦null true none none
»» severity integer(int32)¦null true none none
» details any false none none

getInfo

Code samples

# You can also use wget
curl -X GET /info \
  -H 'Accept: application/json'

GET /info HTTP/1.1

Accept: application/json


const headers = {
  'Accept':'application/json'
};

fetch('/info',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

require 'rest-client'
require 'json'

headers = {
  'Accept' => 'application/json'
}

result = RestClient.get '/info',
  params: {
  }, headers: headers

p JSON.parse(result)

import requests
headers = {
  'Accept': 'application/json'
}

r = requests.get('/info', headers = headers)

print(r.json())

<?php

require 'vendor/autoload.php';

$headers = array(
    'Accept' => 'application/json',
);

$client = new \GuzzleHttp\Client();

// Define array of request body.
$request_body = array();

try {
    $response = $client->request('GET','/info', array(
        'headers' => $headers,
        'json' => $request_body,
       )
    );
    print_r($response->getBody()->getContents());
 }
 catch (\GuzzleHttp\Exception\BadResponseException $e) {
    // handle exception or api errors.
    print_r($e->getMessage());
 }

 // ...

URL obj = new URL("/info");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
    new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
    response.append(inputLine);
}
in.close();
System.out.println(response.toString());

package main

import (
       "bytes"
       "net/http"
)

func main() {

    headers := map[string][]string{
        "Accept": []string{"application/json"},
    }

    data := bytes.NewBuffer([]byte{jsonReq})
    req, err := http.NewRequest("GET", "/info", data)
    req.Header = headers

    client := &http.Client{}
    resp, err := client.Do(req)
    // ...
}

GET /info

Example responses

200 Response

[
  {}
]

Responses

Status Meaning Description Schema
200 OK getInfo 200 response Inline

Response Schema

Schemas

AdditionalProcessingInfo

{
  "missingMandatoryFields": [
    "ADDITIONAL_ADDRESS_INFORMATION"
  ],
  "invalidCharacterFields": [
    "ADDITIONAL_ADDRESS_INFORMATION"
  ],
  "extraPresentFields": [
    "ADDITIONAL_ADDRESS_INFORMATION"
  ],
  "imageExtractionFailures": [
    "FULL_DOCUMENT"
  ]
}

The additional details about the processing info.

Properties

Name Type Required Restrictions Description
missingMandatoryFields [FieldType]¦null false none List of fields that were expected on the document but were missing.
invalidCharacterFields [FieldType]¦null false none List of fields that contained characters which were not expected in that field.
extraPresentFields [FieldType]¦null false none List of fields that weren't expected on the document but were present.
imageExtractionFailures [ImageExtractionType]¦null false none List of failed image extractions.

AddressDetailedInfo

{
  "street": "string",
  "postalCode": "string",
  "city": "string",
  "jurisdiction": "string"
}

The details about the address.

Properties

Name Type Required Restrictions Description
street string¦null false none The street address portion of the United States driver license owner.
postalCode string¦null false none The postal code address portion of the United States driver license owner.
city string¦null false none The city address portion of the United States driver license owner.
jurisdiction string¦null false none The jurisdiction code address portion of the United States driver license owner.

AlphabetType

"LATIN"

Properties

Name Type Required Restrictions Description
anonymous string false none none

Enumerated Values

Property Value
anonymous LATIN
anonymous ARABIC
anonymous CYRILLIC
anonymous GREEK

AnonymizationMode

"NONE"

Anonymization mode

Properties

Name Type Required Restrictions Description
Anonymization mode string false none Level of anonymization performed on recognizer result.

Enumerated Values

Property Value
Anonymization mode NONE
Anonymization mode IMAGE_ONLY
Anonymization mode RESULT_FIELDS_ONLY
Anonymization mode FULL_RESULT

AnonymizationSettings

{
  "cardNumberAnonymizationSettings": {
    "anonymizationMode": "NONE",
    "prefixDigitsVisible": 0,
    "suffixDigitsVisible": 0
  },
  "cardNumberPrefixAnonymizationMode": "NONE",
  "cvvAnonymizationMode": "NONE",
  "ibanAnonymizationMode": "NONE",
  "ownerAnonymizationMode": "NONE",
  "fallbackAnonymization": false
}

Whether sensitive data should be redacted from the result.

Properties

Name Type Required Restrictions Description
cardNumberAnonymizationSettings any false none none

allOf

Name Type Required Restrictions Description
» anonymous CardNumberAnonymizationSettings false none Parameters of card number anonymization

and

Name Type Required Restrictions Description
» anonymous CardNumberAnonymizationSettings false none Defines the parameters of card number anonymization.

continued

Name Type Required Restrictions Description
cardNumberPrefixAnonymizationMode any false none none

allOf

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Level of anonymization performed on recognizer result.

and

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Defines the mode of card number prefix anonymization. Default NONE

continued

Name Type Required Restrictions Description
cvvAnonymizationMode any false none none

allOf

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Level of anonymization performed on recognizer result.

and

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Defines the mode of CVV anonymization. Default NONE

continued

Name Type Required Restrictions Description
ibanAnonymizationMode any false none none

allOf

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Level of anonymization performed on recognizer result.

and

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Defines the mode of IBAN anonymization. Default NONE

continued

Name Type Required Restrictions Description
ownerAnonymizationMode any false none none

allOf

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Level of anonymization performed on recognizer result.

and

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Defines the mode of owner anonymization. Default NONE

continued

Name Type Required Restrictions Description
fallbackAnonymization boolean¦null false none If true, anonymization is applied on all fields of the image if extraction is uncertain. Default FALSE

BarcodeDriverLicenseDetailedInfo

{
  "restrictions": "string",
  "endorsements": "string",
  "vehicleClass": "string",
  "conditions": "string",
  "vehicleClassesInfo": [
    {
      "vehicleClass": "string",
      "licenceType": "string",
      "effectiveDate": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "expiryDate": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      }
    }
  ]
}

The driver license detailed info.

Properties

Name Type Required Restrictions Description
restrictions string¦null false none The restrictions to driving privileges for the United States driver license owner.
endorsements string¦null false none The additional privileges granted to the United States driver license owner.
vehicleClass string¦null false none The type of vehicle the driver license owner has privilege to drive.
conditions string¦null false none The driver license conditions.
vehicleClassesInfo [BarcodeVehicleClassInfo]¦null false none The additional information on vehicle class.

BarcodeElement

{
  "key": "BARCODE_ELEMENT_KEY_DOCUMENT_TYPE",
  "value": "string"
}

Properties

Name Type Required Restrictions Description
key BarcodeElementKey¦null false none Additional fields present in the barcode.
value string¦null false none none

BarcodeElementKey

"BARCODE_ELEMENT_KEY_DOCUMENT_TYPE"

Barcode element key

Properties

Name Type Required Restrictions Description
Barcode element key string false none Additional fields present in the barcode.

Enumerated Values

Property Value
Barcode element key BARCODE_ELEMENT_KEY_DOCUMENT_TYPE
Barcode element key STANDARD_VERSION_NUMBER
Barcode element key CUSTOMER_FAMILY_NAME
Barcode element key CUSTOMER_FIRST_NAME
Barcode element key CUSTOMER_FULL_NAME
Barcode element key DATE_OF_BIRTH
Barcode element key SEX
Barcode element key EYE_COLOR
Barcode element key ADDRESS_STREET
Barcode element key ADDRESS_CITY
Barcode element key ADDRESS_JURISDICTION_CODE
Barcode element key ADDRESS_POSTAL_CODE
Barcode element key FULL_ADDRESS
Barcode element key HEIGHT
Barcode element key HEIGHT_IN
Barcode element key HEIGHT_CM
Barcode element key CUSTOMER_MIDDLE_NAME
Barcode element key HAIR_COLOR
Barcode element key NAME_SUFFIX
Barcode element key AKA_FULL_NAME
Barcode element key AKA_FAMILY_NAME
Barcode element key AKA_GIVEN_NAME
Barcode element key AKA_SUFFIX_NAME
Barcode element key WEIGHT_RANGE
Barcode element key WEIGHT_POUNDS
Barcode element key WEIGHT_KILOGRAMS
Barcode element key CUSTOMER_ID_NUMBER
Barcode element key FAMILY_NAME_TRUNCATION
Barcode element key FIRST_NAME_TRUNCATION
Barcode element key MIDDLE_NAME_TRUNCATION
Barcode element key PLACE_OF_BIRTH
Barcode element key ADDRESS_STREET_2
Barcode element key RACE_ETHNICITY
Barcode element key NAME_PREFIX
Barcode element key COUNTRY_IDENTIFICATION
Barcode element key RESIDENCE_STREET_ADDRESS
Barcode element key RESIDENCE_STREET_ADDRESS_2
Barcode element key RESIDENCE_CITY
Barcode element key RESIDENCE_JURISDICTION_CODE
Barcode element key RESIDENCE_POSTAL_CODE
Barcode element key RESIDENCE_FULL_ADDRESS
Barcode element key UNDER_18
Barcode element key UNDER_19
Barcode element key UNDER_21
Barcode element key SOCIAL_SECURITY_NUMBER
Barcode element key AKA_SOCIAL_SECURITY_NUMBER
Barcode element key AKA_MIDDLE_NAME
Barcode element key AKA_PREFIX_NAME
Barcode element key ORGAN_DONOR
Barcode element key VETERAN
Barcode element key AKA_DATE_OF_BIRTH
Barcode element key ISSUER_IDENTIFICATION_NUMBER
Barcode element key DOCUMENT_EXPIRATION_DATE
Barcode element key JURISDICTION_VERSION_NUMBER
Barcode element key JURISDICTION_VEHICLE_CLASS
Barcode element key JURISDICTION_RESTRICTION_CODES
Barcode element key JURISDICTION_ENDORSEMENT_CODES
Barcode element key DOCUMENT_ISSUE_DATE
Barcode element key FEDERAL_COMMERCIAL_VEHICLE_CODES
Barcode element key ISSUING_JURISDICTION
Barcode element key STANDARD_VEHICLE_CLASSIFICATION
Barcode element key ISSUING_JURISDICTION_NAME
Barcode element key STANDARD_ENDORSEMENT_CODE
Barcode element key STANDARD_RESTRICTION_CODE
Barcode element key JURISDICTION_VEHICLE_CLASSIFICATION_DESCRIPTION
Barcode element key JURISDICTION_ENDORSMENT_CODE_DESCRIPTION
Barcode element key JURISDICTION_RESTRICTION_CODE_DESCRIPTION
Barcode element key INVENTORY_CONTROL_NUMBER
Barcode element key CARD_REVISION_DATE
Barcode element key DOCUMENT_DISCRIMINATOR
Barcode element key LIMITED_DURATION_DOCUMENT
Barcode element key AUDIT_INFORMATION
Barcode element key COMPLIANCE_TYPE
Barcode element key ISSUE_TIMESTAMP
Barcode element key PERMIT_EXPIRATION_DATE
Barcode element key PERMIT_IDENTIFIER
Barcode element key PERMIT_ISSUE_DATE
Barcode element key NUMBER_OF_DUPLICATES
Barcode element key HAZMAT_EXPIRATION_DATE
Barcode element key MEDICAL_INDICATOR
Barcode element key NON_RESIDENT
Barcode element key UNIQUE_CUSTOMER_ID
Barcode element key DATA_DISCRIMINATOR
Barcode element key DOCUMENT_EXPIRATION_MONTH
Barcode element key DOCUMENT_NONEXPIRING
Barcode element key SECURITY_VERSION
Barcode element key SUB_FIELD_DESIGNATOR
Barcode element key COUNT

BarcodeEndpointResponse

{
  "traceId": "string",
  "executionId": "string",
  "finishTime": "2019-08-24T14:15:22Z",
  "startTime": "2019-08-24T14:15:22Z",
  "data": {
    "barcodeType": "NONE",
    "rawData": "string",
    "stringData": "string",
    "uncertain": true,
    "detectionPoints": {
      "points": [
        {
          "x": 0,
          "y": 0
        }
      ]
    },
    "recognitionStatus": "EMPTY"
  }
}

Response for Barcode.

Properties

Name Type Required Restrictions Description
traceId string¦null false none none
executionId string true none none
finishTime string(date-time) true none UTC time after recognition finished.
startTime string(date-time) true none UTC time before recognition started.
data BarcodeRecognizerOutput true none none

BarcodeRecognizerOutput

{
  "barcodeType": "NONE",
  "rawData": "string",
  "stringData": "string",
  "uncertain": true,
  "detectionPoints": {
    "points": [
      {
        "x": 0,
        "y": 0
      }
    ]
  },
  "recognitionStatus": "EMPTY"
}

Properties

Name Type Required Restrictions Description
barcodeType BarcodeType¦null false none Type of barcode.
rawData string¦null false none Byte array with result of the scan.
stringData string¦null false none Retrieves string content of scanned data.
uncertain boolean¦null false none Flag indicating uncertain scanning data.
detectionPoints DetectionPoints¦null false none Points array with coordinates of barcode detection.
recognitionStatus ResultState true none Possible states of the Recognizer's result.

BarcodeRequest

{
  "autoScaleDetection": true,
  "nullQuietZoneAllowed": false,
  "readCode39AsExtendedData": false,
  "scanCode128": false,
  "scanCode39": false,
  "scanEan13": false,
  "scanEan8": false,
  "scanInverse": false,
  "scanItf": false,
  "scanPdf417": false,
  "scanQrCode": false,
  "scanUncertain": true,
  "scanUpca": false,
  "scanUpce": false,
  "slowerThoroughScan": false,
  "image": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "traceId": "string"
}

Request body for Barcode recognition.

Properties

Name Type Required Restrictions Description
autoScaleDetection boolean¦null false none Allow enabling the autodetection of image scale when scanning barcodes. If set to true, prior reading barcode, image scale will be corrected. This enabled correct reading of barcodes on high resolution images but slows down the recognition process. This setting is applied only for Code39 and Code128 barcode scanning. Default TRUE
nullQuietZoneAllowed boolean¦null false none Set this to true to scan barcodes which don't have quiet zone (white area) around it. Use only if necessary because it slows down the recognition process Default FALSE
readCode39AsExtendedData boolean¦null false none Enable reading code39 barcode contents as extended data. For more information about code39 extended data (a.k.a. full ASCII mode), see https://en.wikipedia.org/wiki/Code_39#Full_ASCII_Code_39 Default FALSE
scanCode128 boolean¦null false none Set this to true to scan Code 128 1D barcodes. Default FALSE
scanCode39 boolean¦null false none Set this to true to scan Code 39 1D barcodes. Default FALSE
scanEan13 boolean¦null false none Set this to true to scan EAN 13 barcodes. Default FALSE
scanEan8 boolean¦null false none Set this to true to scan EAN8 barcodes. Default FALSE
scanInverse boolean¦null false none Set this to true to allow scanning barcodes with inverted intensities. This options doubles the frame processing time. Default FALSE
scanItf boolean¦null false none Set this to true to scan ITF barcodes. Default FALSE
scanPdf417 boolean¦null false none Set this to true to scan Pdf417 barcodes. Default FALSE
scanQrCode boolean¦null false none Set this to true to scan QR barcodes. Default FALSE
scanUncertain boolean¦null false none Set this to true to scan even barcode not compliant with standards. For example, malformed PDF417 barcodes which were incorrectly encoded. Use only if necessary because it slows down the recognition process. Default TRUE
scanUpca boolean¦null false none Set this to true to scan UPCA barcodes. Default FALSE
scanUpce boolean¦null false none Set this to true to scan UPCE barcodes. Default FALSE
slowerThoroughScan boolean¦null false none Set this to true to allow slower, but better image processing. Default FALSE
image ImageSource true none Url or base64 string of the image. The Base64 image takes precedence if url and base64 are defined.
traceId string¦null false none none

BarcodeResult

{
  "rawDataBase64": "string",
  "stringData": "string",
  "firstName": "string",
  "lastName": "string",
  "middleName": "string",
  "fullName": "string",
  "additionalNameInformation": "string",
  "address": "string",
  "placeOfBirth": "string",
  "nationality": "string",
  "race": "string",
  "religion": "string",
  "profession": "string",
  "maritalStatus": "string",
  "residentialStatus": "string",
  "employer": "string",
  "sex": "string",
  "dateOfBirth": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": "string"
  },
  "dateOfIssue": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": "string"
  },
  "dateOfExpiry": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": "string"
  },
  "documentNumber": "string",
  "personalIdNumber": "string",
  "documentAdditionalNumber": "string",
  "issuingAuthority": "string",
  "addressDetailedInfo": {
    "street": "string",
    "postalCode": "string",
    "city": "string",
    "jurisdiction": "string"
  },
  "driverLicenseDetailedInfo": {
    "restrictions": "string",
    "endorsements": "string",
    "vehicleClass": "string",
    "conditions": "string",
    "vehicleClassesInfo": [
      {
        "vehicleClass": "string",
        "licenceType": "string",
        "effectiveDate": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": "string"
        },
        "expiryDate": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": "string"
        }
      }
    ]
  },
  "extendedElements": [
    {
      "key": "BARCODE_ELEMENT_KEY_DOCUMENT_TYPE",
      "value": "string"
    }
  ],
  "parsed": true
}

The data extracted from the barcode.

Properties

Name Type Required Restrictions Description
rawDataBase64 string¦null false none The raw bytes contained inside barcode.
stringData string¦null false none String representation of data inside barcode.
firstName string¦null false none The first name of the document owner.
lastName string¦null false none The last name of the document owner.
middleName string¦null false none The middle name of the document owner.
fullName string¦null false none The full name of the document owner.
additionalNameInformation string¦null false none The additional name information of the document owner.
address string¦null false none The address of the document owner.
placeOfBirth string¦null false none The place of birth of the document owner.
nationality string¦null false none The nationality of the documet owner.
race string¦null false none The race of the document owner.
religion string¦null false none The religion of the document owner.
profession string¦null false none The profession of the document owner.
maritalStatus string¦null false none The marital status of the document owner.
residentialStatus string¦null false none The residential stauts of the document owner.
employer string¦null false none The employer of the document owner.
sex string¦null false none The sex of the document owner.
dateOfBirth Date¦null false none none
dateOfIssue Date¦null false none none
dateOfExpiry Date¦null false none none
documentNumber string¦null false none The document number.
personalIdNumber string¦null false none The personal identification number.
documentAdditionalNumber string¦null false none The additional number of the document.
issuingAuthority string¦null false none The issuing authority of the document.
addressDetailedInfo AddressDetailedInfo¦null false none The details about the address.
driverLicenseDetailedInfo BarcodeDriverLicenseDetailedInfo¦null false none The driver license detailed info.
extendedElements [BarcodeElement]¦null false none Document specific extended elements that contain all barcode fields in their original form.
parsed boolean false none Boolean that indicates whether the raw barcode data was successfully parsed.

BarcodeType

"NONE"

Barcode type

Properties

Name Type Required Restrictions Description
Barcode type string false none Type of barcode.

Enumerated Values

Property Value
Barcode type NONE
Barcode type QR_CODE
Barcode type UPC_E
Barcode type UPC_A
Barcode type EAN_8
Barcode type EAN_13
Barcode type CODE_128
Barcode type CODE_39
Barcode type ITF
Barcode type PDF417_BARCODE

BarcodeVehicleClassInfo

{
  "vehicleClass": "string",
  "licenceType": "string",
  "effectiveDate": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": "string"
  },
  "expiryDate": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": "string"
  }
}

The additional information on vehicle class.

Properties

Name Type Required Restrictions Description
vehicleClass string¦null false none The type of vehicle the driver license owner has privilege to drive.
licenceType string¦null false none The type of driver licence.
effectiveDate any false none none

allOf

Name Type Required Restrictions Description
» anonymous Date false none none

and

Name Type Required Restrictions Description
» anonymous any false none The date since licence is effective

continued

Name Type Required Restrictions Description
expiryDate any false none none

allOf

Name Type Required Restrictions Description
» anonymous Date false none none

and

Name Type Required Restrictions Description
» anonymous any false none The date of expiry of licence.

BlinkCardEndpointResponse

{
  "traceId": "string",
  "executionId": "string",
  "finishTime": "2019-08-24T14:15:22Z",
  "startTime": "2019-08-24T14:15:22Z",
  "data": {
    "cardIssuer": "ISSUER_OTHER",
    "cardNumber": "string",
    "cardNumberValid": true,
    "cardNumberPrefix": "string",
    "iban": "string",
    "cvv": "string",
    "expiryDate": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "owner": "string",
    "firstSideFullDocumentImage": "string",
    "secondSideFullDocumentImage": "string",
    "firstSideBlurred": true,
    "secondSideBlurred": true,
    "firstSideAnonymized": true,
    "secondSideAnonymized": true,
    "documentLivenessCheck": {
      "front": {
        "screenCheck": {
          "result": "NOT_PERFORMED",
          "matchLevel": "DISABLED"
        },
        "photocopyCheck": {
          "result": "NOT_PERFORMED",
          "matchLevel": "DISABLED"
        },
        "handPresenceCheck": "NOT_PERFORMED"
      },
      "back": {
        "screenCheck": {
          "result": "NOT_PERFORMED",
          "matchLevel": "DISABLED"
        },
        "photocopyCheck": {
          "result": "NOT_PERFORMED",
          "matchLevel": "DISABLED"
        },
        "handPresenceCheck": "NOT_PERFORMED"
      }
    },
    "processingStatus": "SUCCESS",
    "scanningFirstSideDone": true,
    "recognitionStatus": "EMPTY"
  }
}

Response for BlinkCard.

Properties

Name Type Required Restrictions Description
traceId string¦null false none none
executionId string true none none
finishTime string(date-time) true none UTC time after recognition finished.
startTime string(date-time) true none UTC time before recognition started.
data BlinkCardRecognizerOutput true none none

BlinkCardProcessingStatus

"SUCCESS"

BlinkCard processing status

Properties

Name Type Required Restrictions Description
BlinkCard processing status string false none Processing status of BlinkCard.

Enumerated Values

Property Value
BlinkCard processing status SUCCESS
BlinkCard processing status DETECTION_FAILED
BlinkCard processing status IMAGE_PREPROCESSING_FAILED
BlinkCard processing status STABILITY_TEST_FAILED
BlinkCard processing status SCANNING_WRONG_SIDE
BlinkCard processing status FIELD_IDENTIFICATION_FAILED
BlinkCard processing status IMAGE_RETURN_FAILED
BlinkCard processing status UNSUPPORTED_CARD

BlinkCardRecognizerOutput

{
  "cardIssuer": "ISSUER_OTHER",
  "cardNumber": "string",
  "cardNumberValid": true,
  "cardNumberPrefix": "string",
  "iban": "string",
  "cvv": "string",
  "expiryDate": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": "string"
  },
  "owner": "string",
  "firstSideFullDocumentImage": "string",
  "secondSideFullDocumentImage": "string",
  "firstSideBlurred": true,
  "secondSideBlurred": true,
  "firstSideAnonymized": true,
  "secondSideAnonymized": true,
  "documentLivenessCheck": {
    "front": {
      "screenCheck": {
        "result": "NOT_PERFORMED",
        "matchLevel": "DISABLED"
      },
      "photocopyCheck": {
        "result": "NOT_PERFORMED",
        "matchLevel": "DISABLED"
      },
      "handPresenceCheck": "NOT_PERFORMED"
    },
    "back": {
      "screenCheck": {
        "result": "NOT_PERFORMED",
        "matchLevel": "DISABLED"
      },
      "photocopyCheck": {
        "result": "NOT_PERFORMED",
        "matchLevel": "DISABLED"
      },
      "handPresenceCheck": "NOT_PERFORMED"
    }
  },
  "processingStatus": "SUCCESS",
  "scanningFirstSideDone": true,
  "recognitionStatus": "EMPTY"
}

Properties

Name Type Required Restrictions Description
cardIssuer CardIssuer true none Supported issuing institutions that issued the card to the card holder.
cardNumber string¦null false none The payment card number.
cardNumberValid boolean¦null false none The payment card number validity
cardNumberPrefix string¦null false none The payment card number prefix.
iban string¦null false none Payment card's IBAN.
cvv string¦null false none Payment card's security code/value.
expiryDate Date¦null false none none
owner string¦null false none Information about the payment card owner.
firstSideFullDocumentImage string¦null false none Full image of the payment card from first side recognition.
secondSideFullDocumentImage string¦null false none Full image of the payment card from second side recognition.
firstSideBlurred boolean¦null false none Wheater the first scanned side is blurred.
secondSideBlurred boolean¦null false none Wheater the second scanned side is blurred.
firstSideAnonymized boolean¦null false none Whether the first side of document is anonymized.
secondSideAnonymized boolean¦null false none Whether the second side of document is anonymized.
documentLivenessCheck DocumentLivenessCheck¦null false none none
processingStatus BlinkCardProcessingStatus true none Processing status of BlinkCard.
scanningFirstSideDone boolean¦null false none Whether the scanning of the first side is finished.
recognitionStatus ResultState true none Possible states of the Recognizer's result.

BlinkCardRequest

{
  "extractIban": true,
  "extractExpiryDate": true,
  "extractOwner": true,
  "extractCvv": true,
  "returnFullDocumentImage": false,
  "handScaleThreshold": 0.1,
  "handDocumentOverlapThreshold": 0.1,
  "screenAnalysisMatchLevel": "DISABLED",
  "photocopyAnalysisMatchLevel": "DISABLED",
  "anonymizationSettings": {
    "cardNumberAnonymizationSettings": {
      "anonymizationMode": "NONE",
      "prefixDigitsVisible": 0,
      "suffixDigitsVisible": 0
    },
    "cardNumberPrefixAnonymizationMode": "NONE",
    "cvvAnonymizationMode": "NONE",
    "ibanAnonymizationMode": "NONE",
    "ownerAnonymizationMode": "NONE",
    "fallbackAnonymization": false
  },
  "imageFormat": "PNG",
  "skipFramesWithBlur": true,
  "allowInvalidCardNumber": false,
  "cardNumberSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "otherSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "traceId": "string"
}

Request body for Blink Card recognition.

Properties

Name Type Required Restrictions Description
extractIban boolean¦null false none Should extract the payment card's IBAN. Default TRUE
extractExpiryDate boolean¦null false none Defines whether the expiry date should be extracted. Default TRUE
extractOwner boolean¦null false none Should extract the card owner information. Default TRUE
extractCvv boolean¦null false none Defines whether the cvv should be extracted. Default TRUE
returnFullDocumentImage boolean¦null false none Defines whether full document image should be extracted. Default FALSE
handScaleThreshold number(float)¦null false none none
handDocumentOverlapThreshold number(float)¦null false none none
screenAnalysisMatchLevel MatchLevel¦null false none none
photocopyAnalysisMatchLevel MatchLevel¦null false none none
anonymizationSettings AnonymizationSettings¦null false none Whether sensitive data should be redacted from the result.
imageFormat any false none none

allOf

Name Type Required Restrictions Description
» anonymous ImageFormat false none none

and

Name Type Required Restrictions Description
» anonymous any false none Defines return image type. Default PNG

continued

Name Type Required Restrictions Description
skipFramesWithBlur boolean¦null false none Defines whether blurred frames filtering is allowed. Default TRUE
allowInvalidCardNumber boolean¦null false none Defines whether invalid card number is accepted. Default FALSE
cardNumberSide ImageSource true none Url or base64 string of the image. The Base64 image takes precedence if url and base64 are defined.
otherSide ImageSource¦null false none Url or base64 string of the image. The Base64 image takes precedence if url and base64 are defined.
traceId string¦null false none none

BlinkIdMultiSideEndpointResponse

{
  "traceId": "string",
  "executionId": "string",
  "finishTime": "2019-08-24T14:15:22Z",
  "startTime": "2019-08-24T14:15:22Z",
  "data": {
    "firstName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "lastName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "address": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfIssue": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "documentNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sex": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "driverLicenseDetailedInfo": {
      "restrictions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "endorsements": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClass": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "conditions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClassesInfo": [
        {
          "vehicleClass": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "licenceType": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "effectiveDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "expiryDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          }
        }
      ]
    },
    "bloodType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sponsor": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "visaType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullDocumentFirstSideImage": {
      "image": "string"
    },
    "fullDocumentSecondSideImage": {
      "image": "string"
    },
    "faceImage": {
      "image": "string",
      "location": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        }
      },
      "side": "FIRST"
    },
    "signatureImage": {
      "image": "string",
      "location": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        }
      },
      "side": "FIRST"
    },
    "documentSubtype": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "remarks": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residencePermitType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "manufacturingYear": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "eligibilityCategory": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "specificDocumentValidity": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dependentsInfo": [
      {
        "dateOfBirth": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "sex": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "documentNumber": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "fullName": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      }
    ],
    "vehicleOwner": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "certificateNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "countryCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationalInsuranceNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalNameInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalOptionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "placeOfBirth": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationality": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "race": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "religion": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "profession": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maritalStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residentialStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "employer": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "personalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentOptionalAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "issuingAuthority": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fathersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mothersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfEntry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "localityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maidenName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityOfRegistration": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "pollingStationCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "registrationCenterCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sectionCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mrzData": {
      "rawMrzString": "string",
      "documentCode": "string",
      "issuer": "string",
      "documentNumber": "string",
      "opt1": "string",
      "opt2": "string",
      "gender": "string",
      "nationality": "string",
      "primaryId": "string",
      "secondaryId": "string",
      "verified": true,
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "documentType": "UNKNOWN",
      "issuerName": "string",
      "nationalityName": "string"
    },
    "localizedName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dataMatchResult": {
      "dateOfBirth": "NOT_PERFORMED",
      "dateOfExpiry": "NOT_PERFORMED",
      "documentNumber": "NOT_PERFORMED",
      "documentAdditionalNumber": "NOT_PERFORMED",
      "documentOptionalAdditionalNumber": "NOT_PERFORMED",
      "personalIdNumber": "NOT_PERFORMED",
      "dataMatchResult": "NOT_PERFORMED"
    },
    "dateOfExpiryPermanent": true,
    "scanningFirstSideDone": true,
    "additionalPersonalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "firstSideViz": {
      "firstName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "lastName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fullName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentSubtype": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "remarks": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residencePermitType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "manufacturingYear": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "eligibilityCategory": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "specificDocumentValidity": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dependentsInfo": [
        {
          "dateOfBirth": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "sex": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "documentNumber": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "fullName": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        }
      ],
      "vehicleOwner": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "certificateNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "countryCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationalInsuranceNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalNameInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "localizedName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "address": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalOptionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "placeOfBirth": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationality": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "race": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "religion": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "profession": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maritalStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residentialStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "employer": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sex": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiryPermanent": true,
      "documentNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "personalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalPersonalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentOptionalAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "issuingAuthority": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fathersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "mothersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfEntry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "localityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maidenName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityOfRegistration": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "pollingStationCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "registrationCenterCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sectionCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "driverLicenseDetailedInfo": {
        "restrictions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "endorsements": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClass": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "conditions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClassesInfo": [
          {
            "vehicleClass": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "licenceType": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            }
          }
        ]
      },
      "bloodType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sponsor": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "visaType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "secondSideViz": {
      "firstName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "lastName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fullName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentSubtype": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "remarks": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residencePermitType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "manufacturingYear": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "eligibilityCategory": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "specificDocumentValidity": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dependentsInfo": [
        {
          "dateOfBirth": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "sex": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "documentNumber": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "fullName": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        }
      ],
      "vehicleOwner": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "certificateNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "countryCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationalInsuranceNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalNameInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "localizedName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "address": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalOptionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "placeOfBirth": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationality": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "race": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "religion": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "profession": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maritalStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residentialStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "employer": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sex": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiryPermanent": true,
      "documentNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "personalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalPersonalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentOptionalAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "issuingAuthority": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fathersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "mothersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfEntry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "localityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maidenName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityOfRegistration": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "pollingStationCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "registrationCenterCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sectionCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "driverLicenseDetailedInfo": {
        "restrictions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "endorsements": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClass": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "conditions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClassesInfo": [
          {
            "vehicleClass": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "licenceType": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            }
          }
        ]
      },
      "bloodType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sponsor": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "visaType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "barcode": {
      "rawDataBase64": "string",
      "stringData": "string",
      "firstName": "string",
      "lastName": "string",
      "middleName": "string",
      "fullName": "string",
      "additionalNameInformation": "string",
      "address": "string",
      "placeOfBirth": "string",
      "nationality": "string",
      "race": "string",
      "religion": "string",
      "profession": "string",
      "maritalStatus": "string",
      "residentialStatus": "string",
      "employer": "string",
      "sex": "string",
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "documentNumber": "string",
      "personalIdNumber": "string",
      "documentAdditionalNumber": "string",
      "issuingAuthority": "string",
      "addressDetailedInfo": {
        "street": "string",
        "postalCode": "string",
        "city": "string",
        "jurisdiction": "string"
      },
      "driverLicenseDetailedInfo": {
        "restrictions": "string",
        "endorsements": "string",
        "vehicleClass": "string",
        "conditions": "string",
        "vehicleClassesInfo": [
          {
            "vehicleClass": "string",
            "licenceType": "string",
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": "string"
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": "string"
            }
          }
        ]
      },
      "extendedElements": [
        {
          "key": "BARCODE_ELEMENT_KEY_DOCUMENT_TYPE",
          "value": "string"
        }
      ],
      "parsed": true
    },
    "firstSideImageAnalysisResult": {
      "blurDetectionStatus": "NOT_AVAILABLE",
      "glareDetectionStatus": "NOT_AVAILABLE",
      "documentImageColorStatus": "NOT_AVAILABLE",
      "documentImageMoireStatus": "NOT_AVAILABLE",
      "faceDetectionStatus": "NOT_AVAILABLE",
      "mrzDetectionStatus": "NOT_AVAILABLE",
      "barcodeDetectionStatus": "NOT_AVAILABLE",
      "documentOrientation": "HORIZONTAL",
      "documentRotation": "NOT_AVAILABLE",
      "realIDDetectionStatus": "NOT_AVAILABLE",
      "documentHandOcclusionStatus": "NOT_AVAILABLE",
      "documentLightingStatus": "NOT_AVAILABLE"
    },
    "secondSideImageAnalysisResult": {
      "blurDetectionStatus": "NOT_AVAILABLE",
      "glareDetectionStatus": "NOT_AVAILABLE",
      "documentImageColorStatus": "NOT_AVAILABLE",
      "documentImageMoireStatus": "NOT_AVAILABLE",
      "faceDetectionStatus": "NOT_AVAILABLE",
      "mrzDetectionStatus": "NOT_AVAILABLE",
      "barcodeDetectionStatus": "NOT_AVAILABLE",
      "documentOrientation": "HORIZONTAL",
      "documentRotation": "NOT_AVAILABLE",
      "realIDDetectionStatus": "NOT_AVAILABLE",
      "documentHandOcclusionStatus": "NOT_AVAILABLE",
      "documentLightingStatus": "NOT_AVAILABLE"
    },
    "processingStatus": "SUCCESS",
    "firstSideProcessingStatus": "SUCCESS",
    "secondSideProcessingStatus": "SUCCESS",
    "recognitionMode": "NONE",
    "documentClassInfo": {
      "country": "COUNTRY_NONE",
      "region": "REGION_NONE",
      "type": "TYPE_NONE",
      "countryName": "string",
      "isoAlpha3CountryCode": "string",
      "isoAlpha2CountryCode": "string",
      "isoNumericCountryCode": "string"
    },
    "recognitionStatus": "EMPTY",
    "firstSideAdditionalProcessingInfo": {
      "missingMandatoryFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "invalidCharacterFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "extraPresentFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "imageExtractionFailures": [
        "FULL_DOCUMENT"
      ]
    },
    "secondSideAdditionalProcessingInfo": {
      "missingMandatoryFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "invalidCharacterFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "extraPresentFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "imageExtractionFailures": [
        "FULL_DOCUMENT"
      ]
    },
    "isBelowAgeLimit": true,
    "age": 0
  }
}

Response for BlinkIdMultiSide.

Properties

Name Type Required Restrictions Description
traceId string¦null false none none
executionId string true none none
finishTime string(date-time) true none UTC time after recognition finished.
startTime string(date-time) true none UTC time before recognition started.
data BlinkIdMultiSideRecognizerOutput true none none

BlinkIdMultiSideRecognizerOutput

{
  "firstName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "lastName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "fullName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "address": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dateOfBirth": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "dateOfIssue": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "dateOfExpiry": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "documentNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "sex": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "driverLicenseDetailedInfo": {
    "restrictions": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "endorsements": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleClass": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "conditions": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleClassesInfo": [
      {
        "vehicleClass": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "licenceType": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "effectiveDate": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "expiryDate": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        }
      }
    ]
  },
  "bloodType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "sponsor": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "visaType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "fullDocumentFirstSideImage": {
    "image": "string"
  },
  "fullDocumentSecondSideImage": {
    "image": "string"
  },
  "faceImage": {
    "image": "string",
    "location": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      }
    },
    "side": "FIRST"
  },
  "signatureImage": {
    "image": "string",
    "location": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      }
    },
    "side": "FIRST"
  },
  "documentSubtype": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "remarks": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "residencePermitType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "manufacturingYear": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "vehicleType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "eligibilityCategory": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "specificDocumentValidity": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dependentsInfo": [
    {
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "sex": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fullName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    }
  ],
  "vehicleOwner": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "certificateNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "countryCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "nationalInsuranceNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalNameInformation": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalAddressInformation": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalOptionalAddressInformation": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "placeOfBirth": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "nationality": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "race": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "religion": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "profession": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "maritalStatus": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "residentialStatus": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "employer": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "personalIdNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "documentAdditionalNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "documentOptionalAdditionalNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "issuingAuthority": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "fathersName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "mothersName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dateOfEntry": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "localityCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "maidenName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "municipalityCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "municipalityOfRegistration": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "pollingStationCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "registrationCenterCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "sectionCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "stateCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "stateName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "mrzData": {
    "rawMrzString": "string",
    "documentCode": "string",
    "issuer": "string",
    "documentNumber": "string",
    "opt1": "string",
    "opt2": "string",
    "gender": "string",
    "nationality": "string",
    "primaryId": "string",
    "secondaryId": "string",
    "verified": true,
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "documentType": "UNKNOWN",
    "issuerName": "string",
    "nationalityName": "string"
  },
  "localizedName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dataMatchResult": {
    "dateOfBirth": "NOT_PERFORMED",
    "dateOfExpiry": "NOT_PERFORMED",
    "documentNumber": "NOT_PERFORMED",
    "documentAdditionalNumber": "NOT_PERFORMED",
    "documentOptionalAdditionalNumber": "NOT_PERFORMED",
    "personalIdNumber": "NOT_PERFORMED",
    "dataMatchResult": "NOT_PERFORMED"
  },
  "dateOfExpiryPermanent": true,
  "scanningFirstSideDone": true,
  "additionalPersonalIdNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "firstSideViz": {
    "firstName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "lastName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentSubtype": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "remarks": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residencePermitType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "manufacturingYear": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "eligibilityCategory": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "specificDocumentValidity": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dependentsInfo": [
      {
        "dateOfBirth": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "sex": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "documentNumber": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "fullName": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      }
    ],
    "vehicleOwner": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "certificateNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "countryCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationalInsuranceNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalNameInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "localizedName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "address": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalOptionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "placeOfBirth": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationality": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "race": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "religion": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "profession": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maritalStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residentialStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "employer": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sex": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfIssue": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiryPermanent": true,
    "documentNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "personalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalPersonalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentOptionalAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "issuingAuthority": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fathersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mothersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfEntry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "localityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maidenName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityOfRegistration": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "pollingStationCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "registrationCenterCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sectionCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "driverLicenseDetailedInfo": {
      "restrictions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "endorsements": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClass": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "conditions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClassesInfo": [
        {
          "vehicleClass": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "licenceType": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "effectiveDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "expiryDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          }
        }
      ]
    },
    "bloodType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sponsor": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "visaType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "secondSideViz": {
    "firstName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "lastName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentSubtype": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "remarks": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residencePermitType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "manufacturingYear": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "eligibilityCategory": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "specificDocumentValidity": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dependentsInfo": [
      {
        "dateOfBirth": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "sex": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "documentNumber": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "fullName": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      }
    ],
    "vehicleOwner": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "certificateNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "countryCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationalInsuranceNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalNameInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "localizedName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "address": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalOptionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "placeOfBirth": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationality": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "race": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "religion": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "profession": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maritalStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residentialStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "employer": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sex": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfIssue": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiryPermanent": true,
    "documentNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "personalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalPersonalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentOptionalAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "issuingAuthority": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fathersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mothersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfEntry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "localityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maidenName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityOfRegistration": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "pollingStationCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "registrationCenterCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sectionCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "driverLicenseDetailedInfo": {
      "restrictions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "endorsements": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClass": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "conditions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClassesInfo": [
        {
          "vehicleClass": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "licenceType": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "effectiveDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "expiryDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          }
        }
      ]
    },
    "bloodType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sponsor": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "visaType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "barcode": {
    "rawDataBase64": "string",
    "stringData": "string",
    "firstName": "string",
    "lastName": "string",
    "middleName": "string",
    "fullName": "string",
    "additionalNameInformation": "string",
    "address": "string",
    "placeOfBirth": "string",
    "nationality": "string",
    "race": "string",
    "religion": "string",
    "profession": "string",
    "maritalStatus": "string",
    "residentialStatus": "string",
    "employer": "string",
    "sex": "string",
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "dateOfIssue": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "documentNumber": "string",
    "personalIdNumber": "string",
    "documentAdditionalNumber": "string",
    "issuingAuthority": "string",
    "addressDetailedInfo": {
      "street": "string",
      "postalCode": "string",
      "city": "string",
      "jurisdiction": "string"
    },
    "driverLicenseDetailedInfo": {
      "restrictions": "string",
      "endorsements": "string",
      "vehicleClass": "string",
      "conditions": "string",
      "vehicleClassesInfo": [
        {
          "vehicleClass": "string",
          "licenceType": "string",
          "effectiveDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": "string"
          },
          "expiryDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": "string"
          }
        }
      ]
    },
    "extendedElements": [
      {
        "key": "BARCODE_ELEMENT_KEY_DOCUMENT_TYPE",
        "value": "string"
      }
    ],
    "parsed": true
  },
  "firstSideImageAnalysisResult": {
    "blurDetectionStatus": "NOT_AVAILABLE",
    "glareDetectionStatus": "NOT_AVAILABLE",
    "documentImageColorStatus": "NOT_AVAILABLE",
    "documentImageMoireStatus": "NOT_AVAILABLE",
    "faceDetectionStatus": "NOT_AVAILABLE",
    "mrzDetectionStatus": "NOT_AVAILABLE",
    "barcodeDetectionStatus": "NOT_AVAILABLE",
    "documentOrientation": "HORIZONTAL",
    "documentRotation": "NOT_AVAILABLE",
    "realIDDetectionStatus": "NOT_AVAILABLE",
    "documentHandOcclusionStatus": "NOT_AVAILABLE",
    "documentLightingStatus": "NOT_AVAILABLE"
  },
  "secondSideImageAnalysisResult": {
    "blurDetectionStatus": "NOT_AVAILABLE",
    "glareDetectionStatus": "NOT_AVAILABLE",
    "documentImageColorStatus": "NOT_AVAILABLE",
    "documentImageMoireStatus": "NOT_AVAILABLE",
    "faceDetectionStatus": "NOT_AVAILABLE",
    "mrzDetectionStatus": "NOT_AVAILABLE",
    "barcodeDetectionStatus": "NOT_AVAILABLE",
    "documentOrientation": "HORIZONTAL",
    "documentRotation": "NOT_AVAILABLE",
    "realIDDetectionStatus": "NOT_AVAILABLE",
    "documentHandOcclusionStatus": "NOT_AVAILABLE",
    "documentLightingStatus": "NOT_AVAILABLE"
  },
  "processingStatus": "SUCCESS",
  "firstSideProcessingStatus": "SUCCESS",
  "secondSideProcessingStatus": "SUCCESS",
  "recognitionMode": "NONE",
  "documentClassInfo": {
    "country": "COUNTRY_NONE",
    "region": "REGION_NONE",
    "type": "TYPE_NONE",
    "countryName": "string",
    "isoAlpha3CountryCode": "string",
    "isoAlpha2CountryCode": "string",
    "isoNumericCountryCode": "string"
  },
  "recognitionStatus": "EMPTY",
  "firstSideAdditionalProcessingInfo": {
    "missingMandatoryFields": [
      "ADDITIONAL_ADDRESS_INFORMATION"
    ],
    "invalidCharacterFields": [
      "ADDITIONAL_ADDRESS_INFORMATION"
    ],
    "extraPresentFields": [
      "ADDITIONAL_ADDRESS_INFORMATION"
    ],
    "imageExtractionFailures": [
      "FULL_DOCUMENT"
    ]
  },
  "secondSideAdditionalProcessingInfo": {
    "missingMandatoryFields": [
      "ADDITIONAL_ADDRESS_INFORMATION"
    ],
    "invalidCharacterFields": [
      "ADDITIONAL_ADDRESS_INFORMATION"
    ],
    "extraPresentFields": [
      "ADDITIONAL_ADDRESS_INFORMATION"
    ],
    "imageExtractionFailures": [
      "FULL_DOCUMENT"
    ]
  },
  "isBelowAgeLimit": true,
  "age": 0
}

Properties

Name Type Required Restrictions Description
firstName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The first name of the document owner.

continued

Name Type Required Restrictions Description
lastName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The last name of the document owner.

continued

Name Type Required Restrictions Description
fullName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The last name of the document owner.

continued

Name Type Required Restrictions Description
address any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The address of the document owner.

continued

Name Type Required Restrictions Description
dateOfBirth DateResult¦null false none none
dateOfIssue DateResult¦null false none none
dateOfExpiry DateResult¦null false none none
documentNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The document number.

continued

Name Type Required Restrictions Description
sex any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The sex of the document owner.

continued

Name Type Required Restrictions Description
driverLicenseDetailedInfo DriverLicenseDetailedInfo¦null false none The driver license detailed info.
bloodType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The blood type of the document owner.

continued

Name Type Required Restrictions Description
sponsor any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The sponsor of the document owner.

continued

Name Type Required Restrictions Description
visaType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none Visa type of the document.

continued

Name Type Required Restrictions Description
fullDocumentFirstSideImage any false none none

allOf

Name Type Required Restrictions Description
» anonymous CroppedImageResult false none The result of the cropped image transformation with additional details.

and

Name Type Required Restrictions Description
» anonymous any false none The full document front image.

continued

Name Type Required Restrictions Description
fullDocumentSecondSideImage any false none none

allOf

Name Type Required Restrictions Description
» anonymous CroppedImageResult false none The result of the cropped image transformation with additional details.

and

Name Type Required Restrictions Description
» anonymous any false none The full document front image.

continued

Name Type Required Restrictions Description
faceImage any false none none

allOf

Name Type Required Restrictions Description
» anonymous DetailedCroppedImageResult false none The result of the cropped image transformation with additional details.

and

Name Type Required Restrictions Description
» anonymous any false none The face image.

continued

Name Type Required Restrictions Description
signatureImage any false none none

allOf

Name Type Required Restrictions Description
» anonymous DetailedCroppedImageResult false none The result of the cropped image transformation with additional details.

and

Name Type Required Restrictions Description
» anonymous any false none The signature image.

continued

Name Type Required Restrictions Description
documentSubtype any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The transcription of the document subtype.

continued

Name Type Required Restrictions Description
remarks any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The remarks on the residence permit.

continued

Name Type Required Restrictions Description
residencePermitType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The residence permit type.

continued

Name Type Required Restrictions Description
manufacturingYear any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The manufacturing year.

continued

Name Type Required Restrictions Description
vehicleType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The vehicle type.

continued

Name Type Required Restrictions Description
eligibilityCategory any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The eligibility category.

continued

Name Type Required Restrictions Description
specificDocumentValidity any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The specific document validity.

continued

Name Type Required Restrictions Description
dependentsInfo [DependentInfo]¦null false none [ The dependents info.]
vehicleOwner any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The vehicle owner.

continued

Name Type Required Restrictions Description
certificateNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The certificate number of the document owner.

continued

Name Type Required Restrictions Description
countryCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The country code of the document owner.

continued

Name Type Required Restrictions Description
nationalInsuranceNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The national insurance number of the document owner.

continued

Name Type Required Restrictions Description
additionalNameInformation any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional name information of the document owner.

continued

Name Type Required Restrictions Description
additionalAddressInformation any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional address information of the document owner.

continued

Name Type Required Restrictions Description
additionalOptionalAddressInformation any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The one more additional address information of the document owner.

continued

Name Type Required Restrictions Description
placeOfBirth any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The place of birth of the document owner.

continued

Name Type Required Restrictions Description
nationality any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The nationality of the documet owner.

continued

Name Type Required Restrictions Description
race any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The race of the document owner.

continued

Name Type Required Restrictions Description
religion any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The religion of the document owner.

continued

Name Type Required Restrictions Description
profession any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The profession of the document owner.

continued

Name Type Required Restrictions Description
maritalStatus any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The marital status of the document owner.

continued

Name Type Required Restrictions Description
residentialStatus any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The residential stauts of the document owner.

continued

Name Type Required Restrictions Description
employer any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The employer of the document owner.

continued

Name Type Required Restrictions Description
personalIdNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The personal identification number.

continued

Name Type Required Restrictions Description
documentAdditionalNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional number of the document.

continued

Name Type Required Restrictions Description
documentOptionalAdditionalNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The one more additional number of the document.

continued

Name Type Required Restrictions Description
issuingAuthority any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The issuing authority of the document.

continued

Name Type Required Restrictions Description
fathersName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The fathers name of the document owner.

continued

Name Type Required Restrictions Description
mothersName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The mothers name of the document owner.

continued

Name Type Required Restrictions Description
dateOfEntry any false none none

allOf

Name Type Required Restrictions Description
» anonymous DateResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The date of entry.

continued

Name Type Required Restrictions Description
localityCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The locality code.

continued

Name Type Required Restrictions Description
maidenName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The maiden name of the document owner.

continued

Name Type Required Restrictions Description
municipalityCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The municipality code.

continued

Name Type Required Restrictions Description
municipalityOfRegistration any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The municipality of registration.

continued

Name Type Required Restrictions Description
pollingStationCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The polling station code.

continued

Name Type Required Restrictions Description
registrationCenterCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The registration center code.

continued

Name Type Required Restrictions Description
sectionCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The section code.

continued

Name Type Required Restrictions Description
stateCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The state code.

continued

Name Type Required Restrictions Description
stateName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The state name.

continued

Name Type Required Restrictions Description
mrzData MrzResult¦null false none The data extracted from the machine readable zone.
localizedName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The localized name of the document.

continued

Name Type Required Restrictions Description
dataMatchResult DataMatchResult¦null false none Result of data match check.
dateOfExpiryPermanent boolean¦null false none Determines if date of expiry is permanent.
scanningFirstSideDone boolean¦null false none Defines whether recognizer has finished scanning first side.
additionalPersonalIdNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional personal identification number.

continued

Name Type Required Restrictions Description
firstSideViz VIZResult¦null false none The data extracted from the visual inspection zone.
secondSideViz VIZResult¦null false none The data extracted from the visual inspection zone.
barcode BarcodeResult¦null false none The data extracted from the barcode.
firstSideImageAnalysisResult ImageAnalysisResult¦null false none Various information obtained by analysing the scanned image.
secondSideImageAnalysisResult ImageAnalysisResult¦null false none Various information obtained by analysing the scanned image.
processingStatus ProcessingStatus¦null false none Detailed information about the recognition process.
firstSideProcessingStatus ProcessingStatus¦null false none Detailed information about the recognition process.
secondSideProcessingStatus ProcessingStatus¦null false none Detailed information about the recognition process.
recognitionMode RecognitionMode¦null false none Recognition mode used to scan current document.
documentClassInfo DocumentClassInfo¦null false none The document class information.
recognitionStatus ResultState true none Possible states of the Recognizer's result.
firstSideAdditionalProcessingInfo AdditionalProcessingInfo¦null false none The additional details about the processing info.
secondSideAdditionalProcessingInfo AdditionalProcessingInfo¦null false none The additional details about the processing info.
isBelowAgeLimit boolean¦null false none The indicator if document owner is below age limit provided in the request. Default -1 if ageLimit is not sent in the request.
age integer(int32)¦null false none The calculated age of the document owner.

BlinkIdMultiSideRequest

{
  "returnFullDocumentImage": false,
  "returnFaceImage": false,
  "returnSignatureImage": false,
  "skipImagesWithBlur": true,
  "scanUnsupportedSecondSide": false,
  "enableCharacterValidation": true,
  "enableBarcodeScanOnly": false,
  "anonymizationMode": "FULL_RESULT",
  "customDocumentAnonymizationSettings": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "documentNumberAnonymizationSettings": {
        "prefixDigitsVisible": 0,
        "suffixDigitsVisible": 0
      }
    }
  ],
  "customDocumentRules": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        {
          "fieldType": "ADDITIONAL_ADDRESS_INFORMATION",
          "alphabetType": "LATIN"
        }
      ]
    }
  ],
  "imageFormat": "PNG",
  "imageFirstSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "imageSecondSide": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "ageLimit": 0,
  "scanCroppedDocumentImage": false,
  "maxAllowedMismatchesPerField": 0,
  "allowUncertainFirstSideScan": true,
  "scanPassportDataPageOnly": true,
  "skipImagesWithInadequateLightingConditions": true,
  "skipImagesOccludedByHand": true,
  "traceId": "string"
}

Request body for Blink Id Combined recognition.

Properties

Name Type Required Restrictions Description
returnFullDocumentImage boolean¦null false none Defines whether full document image should be extracted. Default FALSE
returnFaceImage boolean¦null false none Defines whether face image should be extracted. Default FALSE
returnSignatureImage boolean¦null false none Defines whether signature image should be extracted. Default FALSE
skipImagesWithBlur boolean¦null false none Defines whether blurred frames filtering is allowed. Default TRUE
scanUnsupportedSecondSide boolean¦null false none Skip back side capture and processing step when back side of the document is not supported. Default FALSE
enableCharacterValidation boolean¦null false none Whether result characters validation is performed. If a result member contains invalid character, the result state cannot be valid. Default TRUE
enableBarcodeScanOnly boolean¦null false none This setting allows barcode recognition to proceed even if the initial extraction fails. If the barcode recognition is successful, the recognizer will still end in a valid state. This setting is applicable only to photo frames. For multi-side recognizers, it is permitted only for the back side. Default FALSE
anonymizationMode any false none none

allOf

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Level of anonymization performed on recognizer result.

and

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Whether sensitive data should be removed from images, result fields or both. The setting only applies to certain documents. Default FULL_RESULT

continued

Name Type Required Restrictions Description
customDocumentAnonymizationSettings [DocumentAnonymizationSettings]¦null false none [Redact fields for specific document class. Fields specified by requirements or laws for a specific document will be redacted regardless of this setting. Based on anonymizationMode setting, data will be redacted from the image, the result or both.]
customDocumentRules [DocumentRules]¦null false none [Define custom rules for specific document class.
The new class rules will be a combination of our internal and user-defined rules.
The more detailed class filter will have priority over the other.]
imageFormat any false none none

allOf

Name Type Required Restrictions Description
» anonymous ImageFormat false none none

and

Name Type Required Restrictions Description
» anonymous any false none Defines return image type. Default PNG

continued

Name Type Required Restrictions Description
imageFirstSide ImageSource true none Url or base64 string of the image. The Base64 image takes precedence if url and base64 are defined.
imageSecondSide ImageSource¦null false none Url or base64 string of the image. The Base64 image takes precedence if url and base64 are defined.
ageLimit integer(int32)¦null false none Defines the age limit for age verification.
scanCroppedDocumentImage boolean¦null false none Configure the recognizer to only work on already cropped and dewarped images. Default FALSE
maxAllowedMismatchesPerField integer(int32)¦null false none Configure the number of characters per field that are allowed to be inconsistent in data match. Default 0
allowUncertainFirstSideScan boolean¦null false none Proceed with scanning the back side even if the front side result is uncertain. Default TRUE
scanPassportDataPageOnly boolean¦null false none Scan only the data page (page containing MRZ) of the passport.If set to false, it will be required to scan the second page of certain passports. Default TRUE
skipImagesWithInadequateLightingConditions boolean¦null false none Indicates whether frames with inadequate lighting conditions should be rejected.
A value of true means frames with poor lighting conditions will be excluded from
further processing to prevent images with inadequate lighting from being used. Default TRUE
skipImagesOccludedByHand boolean¦null false none Indicates whether frames occluded by hand should be rejected.
A value of true means frames occluded by hand will be excluded from
further processing to prevent occluded images from being used.
This setting is applicable only if scanCroppedDocumentImage is disabled. Default TRUE
traceId string¦null false none none

BlinkIdSingleSideEndpointResponse

{
  "traceId": "string",
  "executionId": "string",
  "finishTime": "2019-08-24T14:15:22Z",
  "startTime": "2019-08-24T14:15:22Z",
  "data": {
    "firstName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "lastName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "address": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfIssue": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "documentNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sex": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "driverLicenseDetailedInfo": {
      "restrictions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "endorsements": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClass": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "conditions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClassesInfo": [
        {
          "vehicleClass": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "licenceType": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "effectiveDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "expiryDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          }
        }
      ]
    },
    "bloodType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sponsor": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "visaType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullDocumentImage": {
      "image": "string"
    },
    "faceImage": {
      "image": "string",
      "location": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        }
      },
      "side": "FIRST"
    },
    "signatureImage": {
      "image": "string",
      "location": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        }
      },
      "side": "FIRST"
    },
    "documentSubtype": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "remarks": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residencePermitType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "manufacturingYear": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "eligibilityCategory": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "specificDocumentValidity": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dependentsInfo": [
      {
        "dateOfBirth": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "sex": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "documentNumber": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "fullName": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      }
    ],
    "vehicleOwner": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "certificateNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "countryCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationalInsuranceNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalNameInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalOptionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "placeOfBirth": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationality": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "race": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "religion": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "profession": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maritalStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residentialStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "employer": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "personalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentOptionalAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "issuingAuthority": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fathersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mothersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfEntry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "localityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maidenName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityOfRegistration": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "pollingStationCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "registrationCenterCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sectionCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mrzData": {
      "rawMrzString": "string",
      "documentCode": "string",
      "issuer": "string",
      "documentNumber": "string",
      "opt1": "string",
      "opt2": "string",
      "gender": "string",
      "nationality": "string",
      "primaryId": "string",
      "secondaryId": "string",
      "verified": true,
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "documentType": "UNKNOWN",
      "issuerName": "string",
      "nationalityName": "string"
    },
    "localizedName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfExpiryPermanent": true,
    "additionalPersonalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "viz": {
      "firstName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "lastName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fullName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentSubtype": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "remarks": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residencePermitType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "manufacturingYear": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "eligibilityCategory": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "specificDocumentValidity": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dependentsInfo": [
        {
          "dateOfBirth": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "sex": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "documentNumber": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "fullName": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        }
      ],
      "vehicleOwner": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "certificateNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "countryCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationalInsuranceNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalNameInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "localizedName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "address": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalOptionalAddressInformation": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "placeOfBirth": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "nationality": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "race": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "religion": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "profession": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maritalStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "residentialStatus": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "employer": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sex": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "dateOfExpiryPermanent": true,
      "documentNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "personalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "additionalPersonalIdNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentOptionalAdditionalNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "issuingAuthority": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fathersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "mothersName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "dateOfEntry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "localityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "maidenName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "municipalityOfRegistration": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "pollingStationCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "registrationCenterCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sectionCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateCode": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "stateName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "driverLicenseDetailedInfo": {
        "restrictions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "endorsements": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClass": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "conditions": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "vehicleClassesInfo": [
          {
            "vehicleClass": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "licenceType": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            },
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": {
                "latin": "string",
                "latinLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "cyrillic": "string",
                "cyrillicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "arabic": "string",
                "arabicLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                },
                "greek": "string",
                "greekLocation": {
                  "topLeftCorner": {
                    "x": 0.1,
                    "y": 0.1
                  },
                  "dimensions": {
                    "width": 0.1,
                    "height": 0.1
                  },
                  "side": "FIRST"
                }
              }
            }
          }
        ]
      },
      "bloodType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "sponsor": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "visaType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "barcode": {
      "rawDataBase64": "string",
      "stringData": "string",
      "firstName": "string",
      "lastName": "string",
      "middleName": "string",
      "fullName": "string",
      "additionalNameInformation": "string",
      "address": "string",
      "placeOfBirth": "string",
      "nationality": "string",
      "race": "string",
      "religion": "string",
      "profession": "string",
      "maritalStatus": "string",
      "residentialStatus": "string",
      "employer": "string",
      "sex": "string",
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfIssue": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "dateOfExpiry": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": "string"
      },
      "documentNumber": "string",
      "personalIdNumber": "string",
      "documentAdditionalNumber": "string",
      "issuingAuthority": "string",
      "addressDetailedInfo": {
        "street": "string",
        "postalCode": "string",
        "city": "string",
        "jurisdiction": "string"
      },
      "driverLicenseDetailedInfo": {
        "restrictions": "string",
        "endorsements": "string",
        "vehicleClass": "string",
        "conditions": "string",
        "vehicleClassesInfo": [
          {
            "vehicleClass": "string",
            "licenceType": "string",
            "effectiveDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": "string"
            },
            "expiryDate": {
              "day": 0,
              "month": 0,
              "year": 0,
              "successfullyParsed": true,
              "filledByDomainKnowledge": true,
              "originalString": "string"
            }
          }
        ]
      },
      "extendedElements": [
        {
          "key": "BARCODE_ELEMENT_KEY_DOCUMENT_TYPE",
          "value": "string"
        }
      ],
      "parsed": true
    },
    "imageAnalysisResult": {
      "blurDetectionStatus": "NOT_AVAILABLE",
      "glareDetectionStatus": "NOT_AVAILABLE",
      "documentImageColorStatus": "NOT_AVAILABLE",
      "documentImageMoireStatus": "NOT_AVAILABLE",
      "faceDetectionStatus": "NOT_AVAILABLE",
      "mrzDetectionStatus": "NOT_AVAILABLE",
      "barcodeDetectionStatus": "NOT_AVAILABLE",
      "documentOrientation": "HORIZONTAL",
      "documentRotation": "NOT_AVAILABLE",
      "realIDDetectionStatus": "NOT_AVAILABLE",
      "documentHandOcclusionStatus": "NOT_AVAILABLE",
      "documentLightingStatus": "NOT_AVAILABLE"
    },
    "processingStatus": "SUCCESS",
    "recognitionMode": "NONE",
    "documentClassInfo": {
      "country": "COUNTRY_NONE",
      "region": "REGION_NONE",
      "type": "TYPE_NONE",
      "countryName": "string",
      "isoAlpha3CountryCode": "string",
      "isoAlpha2CountryCode": "string",
      "isoNumericCountryCode": "string"
    },
    "recognitionStatus": "EMPTY",
    "additionalProcessingInfo": {
      "missingMandatoryFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "invalidCharacterFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "extraPresentFields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "imageExtractionFailures": [
        "FULL_DOCUMENT"
      ]
    },
    "isBelowAgeLimit": true,
    "age": 0
  }
}

Response for BlinkId.

Properties

Name Type Required Restrictions Description
traceId string¦null false none none
executionId string true none none
finishTime string(date-time) true none UTC time after recognition finished.
startTime string(date-time) true none UTC time before recognition started.
data BlinkIdSingleSideRecognizerOutput true none none

BlinkIdSingleSideRecognizerOutput

{
  "firstName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "lastName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "fullName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "address": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dateOfBirth": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "dateOfIssue": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "dateOfExpiry": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "documentNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "sex": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "driverLicenseDetailedInfo": {
    "restrictions": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "endorsements": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleClass": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "conditions": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleClassesInfo": [
      {
        "vehicleClass": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "licenceType": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "effectiveDate": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "expiryDate": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        }
      }
    ]
  },
  "bloodType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "sponsor": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "visaType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "fullDocumentImage": {
    "image": "string"
  },
  "faceImage": {
    "image": "string",
    "location": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      }
    },
    "side": "FIRST"
  },
  "signatureImage": {
    "image": "string",
    "location": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      }
    },
    "side": "FIRST"
  },
  "documentSubtype": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "remarks": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "residencePermitType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "manufacturingYear": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "vehicleType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "eligibilityCategory": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "specificDocumentValidity": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dependentsInfo": [
    {
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "sex": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fullName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    }
  ],
  "vehicleOwner": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "certificateNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "countryCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "nationalInsuranceNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalNameInformation": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalAddressInformation": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalOptionalAddressInformation": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "placeOfBirth": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "nationality": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "race": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "religion": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "profession": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "maritalStatus": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "residentialStatus": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "employer": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "personalIdNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "documentAdditionalNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "documentOptionalAdditionalNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "issuingAuthority": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "fathersName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "mothersName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dateOfEntry": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "localityCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "maidenName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "municipalityCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "municipalityOfRegistration": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "pollingStationCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "registrationCenterCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "sectionCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "stateCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "stateName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "mrzData": {
    "rawMrzString": "string",
    "documentCode": "string",
    "issuer": "string",
    "documentNumber": "string",
    "opt1": "string",
    "opt2": "string",
    "gender": "string",
    "nationality": "string",
    "primaryId": "string",
    "secondaryId": "string",
    "verified": true,
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "documentType": "UNKNOWN",
    "issuerName": "string",
    "nationalityName": "string"
  },
  "localizedName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dateOfExpiryPermanent": true,
  "additionalPersonalIdNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "viz": {
    "firstName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "lastName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fullName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentSubtype": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "remarks": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residencePermitType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "manufacturingYear": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "eligibilityCategory": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "specificDocumentValidity": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dependentsInfo": [
      {
        "dateOfBirth": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "sex": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "documentNumber": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "fullName": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      }
    ],
    "vehicleOwner": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "certificateNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "countryCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationalInsuranceNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalNameInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "localizedName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "address": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalOptionalAddressInformation": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "placeOfBirth": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "nationality": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "race": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "religion": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "profession": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maritalStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "residentialStatus": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "employer": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sex": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfIssue": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "dateOfExpiryPermanent": true,
    "documentNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "personalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "additionalPersonalIdNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "documentOptionalAdditionalNumber": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "issuingAuthority": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "fathersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "mothersName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "dateOfEntry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    },
    "localityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "maidenName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "municipalityOfRegistration": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "pollingStationCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "registrationCenterCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sectionCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateCode": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "stateName": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "driverLicenseDetailedInfo": {
      "restrictions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "endorsements": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClass": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "conditions": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "vehicleClassesInfo": [
        {
          "vehicleClass": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "licenceType": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          },
          "effectiveDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          },
          "expiryDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": {
              "latin": "string",
              "latinLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "cyrillic": "string",
              "cyrillicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "arabic": "string",
              "arabicLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              },
              "greek": "string",
              "greekLocation": {
                "topLeftCorner": {
                  "x": 0.1,
                  "y": 0.1
                },
                "dimensions": {
                  "width": 0.1,
                  "height": 0.1
                },
                "side": "FIRST"
              }
            }
          }
        }
      ]
    },
    "bloodType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "sponsor": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "visaType": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "barcode": {
    "rawDataBase64": "string",
    "stringData": "string",
    "firstName": "string",
    "lastName": "string",
    "middleName": "string",
    "fullName": "string",
    "additionalNameInformation": "string",
    "address": "string",
    "placeOfBirth": "string",
    "nationality": "string",
    "race": "string",
    "religion": "string",
    "profession": "string",
    "maritalStatus": "string",
    "residentialStatus": "string",
    "employer": "string",
    "sex": "string",
    "dateOfBirth": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "dateOfIssue": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "dateOfExpiry": {
      "day": 0,
      "month": 0,
      "year": 0,
      "successfullyParsed": true,
      "filledByDomainKnowledge": true,
      "originalString": "string"
    },
    "documentNumber": "string",
    "personalIdNumber": "string",
    "documentAdditionalNumber": "string",
    "issuingAuthority": "string",
    "addressDetailedInfo": {
      "street": "string",
      "postalCode": "string",
      "city": "string",
      "jurisdiction": "string"
    },
    "driverLicenseDetailedInfo": {
      "restrictions": "string",
      "endorsements": "string",
      "vehicleClass": "string",
      "conditions": "string",
      "vehicleClassesInfo": [
        {
          "vehicleClass": "string",
          "licenceType": "string",
          "effectiveDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": "string"
          },
          "expiryDate": {
            "day": 0,
            "month": 0,
            "year": 0,
            "successfullyParsed": true,
            "filledByDomainKnowledge": true,
            "originalString": "string"
          }
        }
      ]
    },
    "extendedElements": [
      {
        "key": "BARCODE_ELEMENT_KEY_DOCUMENT_TYPE",
        "value": "string"
      }
    ],
    "parsed": true
  },
  "imageAnalysisResult": {
    "blurDetectionStatus": "NOT_AVAILABLE",
    "glareDetectionStatus": "NOT_AVAILABLE",
    "documentImageColorStatus": "NOT_AVAILABLE",
    "documentImageMoireStatus": "NOT_AVAILABLE",
    "faceDetectionStatus": "NOT_AVAILABLE",
    "mrzDetectionStatus": "NOT_AVAILABLE",
    "barcodeDetectionStatus": "NOT_AVAILABLE",
    "documentOrientation": "HORIZONTAL",
    "documentRotation": "NOT_AVAILABLE",
    "realIDDetectionStatus": "NOT_AVAILABLE",
    "documentHandOcclusionStatus": "NOT_AVAILABLE",
    "documentLightingStatus": "NOT_AVAILABLE"
  },
  "processingStatus": "SUCCESS",
  "recognitionMode": "NONE",
  "documentClassInfo": {
    "country": "COUNTRY_NONE",
    "region": "REGION_NONE",
    "type": "TYPE_NONE",
    "countryName": "string",
    "isoAlpha3CountryCode": "string",
    "isoAlpha2CountryCode": "string",
    "isoNumericCountryCode": "string"
  },
  "recognitionStatus": "EMPTY",
  "additionalProcessingInfo": {
    "missingMandatoryFields": [
      "ADDITIONAL_ADDRESS_INFORMATION"
    ],
    "invalidCharacterFields": [
      "ADDITIONAL_ADDRESS_INFORMATION"
    ],
    "extraPresentFields": [
      "ADDITIONAL_ADDRESS_INFORMATION"
    ],
    "imageExtractionFailures": [
      "FULL_DOCUMENT"
    ]
  },
  "isBelowAgeLimit": true,
  "age": 0
}

Properties

Name Type Required Restrictions Description
firstName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The first name of the document owner.

continued

Name Type Required Restrictions Description
lastName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The last name of the document owner.

continued

Name Type Required Restrictions Description
fullName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The full name of the document owner.

continued

Name Type Required Restrictions Description
address any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The address of the document owner.

continued

Name Type Required Restrictions Description
dateOfBirth DateResult¦null false none none
dateOfIssue DateResult¦null false none none
dateOfExpiry DateResult¦null false none none
documentNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The document number.

continued

Name Type Required Restrictions Description
sex any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The sex of the document owner.

continued

Name Type Required Restrictions Description
driverLicenseDetailedInfo DriverLicenseDetailedInfo¦null false none The driver license detailed info.
bloodType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The blood type of the document owner.

continued

Name Type Required Restrictions Description
sponsor any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The sponsor of the document owner.

continued

Name Type Required Restrictions Description
visaType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none Visa type of the document.

continued

Name Type Required Restrictions Description
fullDocumentImage any false none none

allOf

Name Type Required Restrictions Description
» anonymous CroppedImageResult false none The result of the cropped image transformation with additional details.

and

Name Type Required Restrictions Description
» anonymous any false none The full document image.

continued

Name Type Required Restrictions Description
faceImage any false none none

allOf

Name Type Required Restrictions Description
» anonymous DetailedCroppedImageResult false none The result of the cropped image transformation with additional details.

and

Name Type Required Restrictions Description
» anonymous any false none The face image.

continued

Name Type Required Restrictions Description
signatureImage any false none none

allOf

Name Type Required Restrictions Description
» anonymous DetailedCroppedImageResult false none The result of the cropped image transformation with additional details.

and

Name Type Required Restrictions Description
» anonymous any false none The signature image.

continued

Name Type Required Restrictions Description
documentSubtype any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The transcription of the document subtype.

continued

Name Type Required Restrictions Description
remarks any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The remarks on the residence permit.

continued

Name Type Required Restrictions Description
residencePermitType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The residence permit type.

continued

Name Type Required Restrictions Description
manufacturingYear any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The manufacturing year.

continued

Name Type Required Restrictions Description
vehicleType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The vehicle type.

continued

Name Type Required Restrictions Description
eligibilityCategory any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The eligibility category.

continued

Name Type Required Restrictions Description
specificDocumentValidity any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The specific document validity.

continued

Name Type Required Restrictions Description
dependentsInfo [DependentInfo]¦null false none [ The dependents info.]
vehicleOwner any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The vehicle owner.

continued

Name Type Required Restrictions Description
certificateNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The certificate number of the document owner.

continued

Name Type Required Restrictions Description
countryCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The country code of the document owner.

continued

Name Type Required Restrictions Description
nationalInsuranceNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The national insurance number of the document owner.

continued

Name Type Required Restrictions Description
additionalNameInformation any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional name information of the document owner.

continued

Name Type Required Restrictions Description
additionalAddressInformation any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional address information of the document owner.

continued

Name Type Required Restrictions Description
additionalOptionalAddressInformation any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The one more additional address information of the document owner.

continued

Name Type Required Restrictions Description
placeOfBirth any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The place of birth of the document owner.

continued

Name Type Required Restrictions Description
nationality any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The nationality of the documet owner.

continued

Name Type Required Restrictions Description
race any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The race of the document owner.

continued

Name Type Required Restrictions Description
religion any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The religion of the document owner.

continued

Name Type Required Restrictions Description
profession any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The profession of the document owner.

continued

Name Type Required Restrictions Description
maritalStatus any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The marital status of the document owner.

continued

Name Type Required Restrictions Description
residentialStatus any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The residential stauts of the document owner.

continued

Name Type Required Restrictions Description
employer any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The employer of the document owner.

continued

Name Type Required Restrictions Description
personalIdNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The personal identification number.

continued

Name Type Required Restrictions Description
documentAdditionalNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional number of the document.

continued

Name Type Required Restrictions Description
documentOptionalAdditionalNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The one more additional number of the document.

continued

Name Type Required Restrictions Description
issuingAuthority any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The issuing authority of the document.

continued

Name Type Required Restrictions Description
fathersName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The fathers name of the document owner.

continued

Name Type Required Restrictions Description
mothersName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The mothers name of the document owner.

continued

Name Type Required Restrictions Description
dateOfEntry any false none none

allOf

Name Type Required Restrictions Description
» anonymous DateResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The date of entry.

continued

Name Type Required Restrictions Description
localityCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The locality code.

continued

Name Type Required Restrictions Description
maidenName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The maiden name of the document owner.

continued

Name Type Required Restrictions Description
municipalityCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The municipality code.

continued

Name Type Required Restrictions Description
municipalityOfRegistration any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The municipality of registration.

continued

Name Type Required Restrictions Description
pollingStationCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The polling station code.

continued

Name Type Required Restrictions Description
registrationCenterCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The registration center code.

continued

Name Type Required Restrictions Description
sectionCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The section code.

continued

Name Type Required Restrictions Description
stateCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The state code.

continued

Name Type Required Restrictions Description
stateName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The state name.

continued

Name Type Required Restrictions Description
mrzData MrzResult¦null false none The data extracted from the machine readable zone.
localizedName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The localized name of the document.

continued

Name Type Required Restrictions Description
dateOfExpiryPermanent boolean¦null false none Determines if date of expiry is permanent.
additionalPersonalIdNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional personal identification number.

continued

Name Type Required Restrictions Description
viz VIZResult¦null false none The data extracted from the visual inspection zone.
barcode BarcodeResult¦null false none The data extracted from the barcode.
imageAnalysisResult ImageAnalysisResult¦null false none Various information obtained by analysing the scanned image.
processingStatus ProcessingStatus¦null false none Detailed information about the recognition process.
recognitionMode RecognitionMode¦null false none Recognition mode used to scan current document.
documentClassInfo DocumentClassInfo¦null false none The document class information.
recognitionStatus ResultState true none Possible states of the Recognizer's result.
additionalProcessingInfo AdditionalProcessingInfo¦null false none The additional details about the processing info.
isBelowAgeLimit boolean¦null false none The indicator if document owner is below age limit provided in the request. Default -1 if ageLimit is not sent in the request.
age integer(int32)¦null false none The calculated age of the document owner.

BlinkIdSingleSideRequest

{
  "returnFullDocumentImage": false,
  "returnFaceImage": false,
  "returnSignatureImage": false,
  "skipImagesWithBlur": true,
  "enableCharacterValidation": true,
  "enableBarcodeScanOnly": false,
  "anonymizationMode": "FULL_RESULT",
  "customDocumentAnonymizationSettings": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        "ADDITIONAL_ADDRESS_INFORMATION"
      ],
      "documentNumberAnonymizationSettings": {
        "prefixDigitsVisible": 0,
        "suffixDigitsVisible": 0
      }
    }
  ],
  "customDocumentRules": [
    {
      "documentFilter": {
        "country": "COUNTRY_NONE",
        "region": "REGION_NONE",
        "type": "TYPE_NONE"
      },
      "fields": [
        {
          "fieldType": "ADDITIONAL_ADDRESS_INFORMATION",
          "alphabetType": "LATIN"
        }
      ]
    }
  ],
  "imageFormat": "PNG",
  "ageLimit": 0,
  "image": {
    "imageUrl": "string",
    "imageBase64": "string"
  },
  "scanCroppedDocumentImage": false,
  "skipImagesWithInadequateLightingConditions": false,
  "skipImagesOccludedByHand": false,
  "traceId": "string"
}

Request body for Blink Id recognition.

Properties

Name Type Required Restrictions Description
returnFullDocumentImage boolean¦null false none Defines whether full document image should be extracted. Default FALSE
returnFaceImage boolean¦null false none Defines whether face image should be extracted. Default FALSE
returnSignatureImage boolean¦null false none Defines whether signature image should be extracted. Default FALSE
skipImagesWithBlur boolean¦null false none Defines whether blurred frames filtering is allowed. Default TRUE
enableCharacterValidation boolean¦null false none Whether result characters validation is performed. If a result member contains invalid character, the result state cannot be valid. Default TRUE
enableBarcodeScanOnly boolean¦null false none This setting allows barcode recognition to proceed even if the initial extraction fails. If the barcode recognition is successful, the recognizer will still end in a valid state. This setting is applicable only to photo frames. For multi-side recognizers, it is permitted only for the back side. Default FALSE
anonymizationMode any false none none

allOf

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Level of anonymization performed on recognizer result.

and

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Whether sensitive data should be removed from images, result fields or both. The setting only applies to certain documents. Default FULL_RESULT

continued

Name Type Required Restrictions Description
customDocumentAnonymizationSettings [DocumentAnonymizationSettings]¦null false none [Redact fields for specific document class. Fields specified by requirements or laws for a specific document will be redacted regardless of this setting. Based on anonymizationMode setting, data will be redacted from the image, the result or both.]
customDocumentRules [DocumentRules]¦null false none [Define custom rules for specific document class.
The new class rules will be a combination of our internal and user-defined rules.
The more detailed class filter will have priority over the other.]
imageFormat any false none none

allOf

Name Type Required Restrictions Description
» anonymous ImageFormat false none none

and

Name Type Required Restrictions Description
» anonymous any false none Defines return image type. Default PNG

continued

Name Type Required Restrictions Description
ageLimit integer(int32)¦null false none Defines the age limit for age verification.
image ImageSource true none Url or base64 string of the image. The Base64 image takes precedence if url and base64 are defined.
scanCroppedDocumentImage boolean¦null false none Configure the recognizer to only work on already cropped and dewarped images. Default FALSE
skipImagesWithInadequateLightingConditions boolean¦null false none Indicates whether frames with inadequate lighting conditions should be rejected.
A value of true means frames with poor lighting conditions will be excluded from
further processing to prevent images with inadequate lighting from being used. Default FALSE
skipImagesOccludedByHand boolean¦null false none Indicates whether frames occluded by hand should be rejected.
A value of true means frames occluded by hand will be excluded from
further processing to prevent occluded images from being used.
This setting is applicable only if scanCroppedDocumentImage is disabled. Default FALSE
traceId string¦null false none none

CardIssuer

"ISSUER_OTHER"

Card issuer

Properties

Name Type Required Restrictions Description
Card issuer string false none Supported issuing institutions that issued the card to the card holder.

Enumerated Values

Property Value
Card issuer ISSUER_OTHER
Card issuer ISSUER_AMERICAN_EXPRESS
Card issuer ISSUER_CHINA_UNION_PAY
Card issuer ISSUER_DINERS
Card issuer ISSUER_DISCOVER_CARD
Card issuer ISSUER_ELO
Card issuer ISSUER_JCB
Card issuer ISSUER_MAESTRO
Card issuer ISSUER_MASTER_CARD
Card issuer ISSUER_RU_PAY
Card issuer ISSUER_VERVE
Card issuer ISSUER_VISA
Card issuer ISSUER_VPAY

CardNumberAnonymizationSettings

{
  "anonymizationMode": "NONE",
  "prefixDigitsVisible": 0,
  "suffixDigitsVisible": 0
}

Parameters of card number anonymization

Properties

Name Type Required Restrictions Description
anonymizationMode any false none none

allOf

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Level of anonymization performed on recognizer result.

and

Name Type Required Restrictions Description
» anonymous AnonymizationMode false none Defines the mode of card number anonymization. Default NONE

continued

Name Type Required Restrictions Description
prefixDigitsVisible integer(int32)¦null false none Defines how many digits at the beginning of the card number remain visible after anonymization. Default 0
suffixDigitsVisible integer(int32)¦null false none Defines how many digits at the end of the card number remain visible after anonymization. Default 0

CheckResult

"NOT_PERFORMED"

Properties

Name Type Required Restrictions Description
anonymous string false none none

Enumerated Values

Property Value
anonymous NOT_PERFORMED
anonymous PASS
anonymous FAIL

Country

"COUNTRY_NONE"

Country

Properties

Name Type Required Restrictions Description
Country string false none Document country.

Enumerated Values

Property Value
Country COUNTRY_NONE
Country COUNTRY_ALBANIA
Country COUNTRY_ALGERIA
Country COUNTRY_ARGENTINA
Country COUNTRY_AUSTRALIA
Country COUNTRY_AUSTRIA
Country COUNTRY_AZERBAIJAN
Country COUNTRY_BAHRAIN
Country COUNTRY_BANGLADESH
Country COUNTRY_BELGIUM
Country COUNTRY_BOSNIA_AND_HERZEGOVINA
Country COUNTRY_BRUNEI
Country COUNTRY_BULGARIA
Country COUNTRY_CAMBODIA
Country COUNTRY_CANADA
Country COUNTRY_CHILE
Country COUNTRY_COLOMBIA
Country COUNTRY_COSTA_RICA
Country COUNTRY_CROATIA
Country COUNTRY_CYPRUS
Country COUNTRY_CZECHIA
Country COUNTRY_DENMARK
Country COUNTRY_DOMINICAN_REPUBLIC
Country COUNTRY_EGYPT
Country COUNTRY_ESTONIA
Country COUNTRY_FINLAND
Country COUNTRY_FRANCE
Country COUNTRY_GEORGIA
Country COUNTRY_GERMANY
Country COUNTRY_GHANA
Country COUNTRY_GREECE
Country COUNTRY_GUATEMALA
Country COUNTRY_HONG_KONG
Country COUNTRY_HUNGARY
Country COUNTRY_INDIA
Country COUNTRY_INDONESIA
Country COUNTRY_IRELAND
Country COUNTRY_ISRAEL
Country COUNTRY_ITALY
Country COUNTRY_JORDAN
Country COUNTRY_KAZAKHSTAN
Country COUNTRY_KENYA
Country COUNTRY_KOSOVO
Country COUNTRY_KUWAIT
Country COUNTRY_LATVIA
Country COUNTRY_LITHUANIA
Country COUNTRY_MALAYSIA
Country COUNTRY_MALDIVES
Country COUNTRY_MALTA
Country COUNTRY_MAURITIUS
Country COUNTRY_MEXICO
Country COUNTRY_MOROCCO
Country COUNTRY_NETHERLANDS
Country COUNTRY_NEW_ZEALAND
Country COUNTRY_NIGERIA
Country COUNTRY_PAKISTAN
Country COUNTRY_PANAMA
Country COUNTRY_PARAGUAY
Country COUNTRY_PHILIPPINES
Country COUNTRY_POLAND
Country COUNTRY_PORTUGAL
Country COUNTRY_PUERTO_RICO
Country COUNTRY_QATAR
Country COUNTRY_ROMANIA
Country COUNTRY_RUSSIA
Country COUNTRY_SAUDI_ARABIA
Country COUNTRY_SERBIA
Country COUNTRY_SINGAPORE
Country COUNTRY_SLOVAKIA
Country COUNTRY_SLOVENIA
Country COUNTRY_SOUTH_AFRICA
Country COUNTRY_SPAIN
Country COUNTRY_SWEDEN
Country COUNTRY_SWITZERLAND
Country COUNTRY_TAIWAN
Country COUNTRY_THAILAND
Country COUNTRY_TUNISIA
Country COUNTRY_TURKEY
Country COUNTRY_UAE
Country COUNTRY_UGANDA
Country COUNTRY_UK
Country COUNTRY_UKRAINE
Country COUNTRY_USA
Country COUNTRY_VIETNAM
Country COUNTRY_BRAZIL
Country COUNTRY_NORWAY
Country COUNTRY_OMAN
Country COUNTRY_ECUADOR
Country COUNTRY_EL_SALVADOR
Country COUNTRY_SRI_LANKA
Country COUNTRY_PERU
Country COUNTRY_URUGUAY
Country COUNTRY_BAHAMAS
Country COUNTRY_BERMUDA
Country COUNTRY_BOLIVIA
Country COUNTRY_CHINA
Country COUNTRY_EUROPEAN_UNION
Country COUNTRY_HAITI
Country COUNTRY_HONDURAS
Country COUNTRY_ICELAND
Country COUNTRY_JAPAN
Country COUNTRY_LUXEMBOURG
Country COUNTRY_MONTENEGRO
Country COUNTRY_NICARAGUA
Country COUNTRY_SOUTH_KOREA
Country COUNTRY_VENEZUELA
Country COUNTRY_AFGHANISTAN
Country COUNTRY_ALAND_ISLANDS
Country COUNTRY_AMERICAN_SAMOA
Country COUNTRY_ANDORRA
Country COUNTRY_ANGOLA
Country COUNTRY_ANGUILLA
Country COUNTRY_ANTARCTICA
Country COUNTRY_ANTIGUA_AND_BARBUDA
Country COUNTRY_ARMENIA
Country COUNTRY_ARUBA
Country COUNTRY_BAILIWICK_OF_GUERNSEY
Country COUNTRY_BAILIWICK_OF_JERSEY
Country COUNTRY_BARBADOS
Country COUNTRY_BELARUS
Country COUNTRY_BELIZE
Country COUNTRY_BENIN
Country COUNTRY_BHUTAN
Country COUNTRY_BONAIRE_SAINT_EUSTATIUS_AND_SABA
Country COUNTRY_BOTSWANA
Country COUNTRY_BOUVET_ISLAND
Country COUNTRY_BRITISH_INDIAN_OCEAN_TERRITORY
Country COUNTRY_BURKINA_FASO
Country COUNTRY_BURUNDI
Country COUNTRY_CAMEROON
Country COUNTRY_CAPE_VERDE
Country COUNTRY_CARIBBEAN_NETHERLANDS
Country COUNTRY_CAYMAN_ISLANDS
Country COUNTRY_CENTRAL_AFRICAN_REPUBLIC
Country COUNTRY_CHAD
Country COUNTRY_CHRISTMAS_ISLAND
Country COUNTRY_COCOS_ISLANDS
Country COUNTRY_COMOROS
Country COUNTRY_CONGO
Country COUNTRY_COOK_ISLANDS
Country COUNTRY_CUBA
Country COUNTRY_CURACAO
Country COUNTRY_DEMOCRATIC_REPUBLIC_OF_THE_CONGO
Country COUNTRY_DJIBOUTI
Country COUNTRY_DOMINICA
Country COUNTRY_EAST_TIMOR
Country COUNTRY_EQUATORIAL_GUINEA
Country COUNTRY_ERITREA
Country COUNTRY_ETHIOPIA
Country COUNTRY_FALKLAND_ISLANDS
Country COUNTRY_FAROE_ISLANDS
Country COUNTRY_FEDERATED_STATES_OF_MICRONESIA
Country COUNTRY_FIJI
Country COUNTRY_FRENCH_GUIANA
Country COUNTRY_FRENCH_POLYNESIA
Country COUNTRY_FRENCH_SOUTHERN_TERRITORIES
Country COUNTRY_GABON
Country COUNTRY_GAMBIA
Country COUNTRY_GIBRALTAR
Country COUNTRY_GREENLAND
Country COUNTRY_GRENADA
Country COUNTRY_GUADELOUPE
Country COUNTRY_GUAM
Country COUNTRY_GUINEA
Country COUNTRY_GUINEA_BISSAU
Country COUNTRY_GUYANA
Country COUNTRY_HEARD_ISLAND_AND_MCDONALD_ISLANDS
Country COUNTRY_IRAN
Country COUNTRY_IRAQ
Country COUNTRY_ISLE_OF_MAN
Country COUNTRY_IVORY_COAST
Country COUNTRY_JAMAICA
Country COUNTRY_KIRIBATI
Country COUNTRY_KYRGYZSTAN
Country COUNTRY_LAOS
Country COUNTRY_LEBANON
Country COUNTRY_LESOTHO
Country COUNTRY_LIBERIA
Country COUNTRY_LIBYA
Country COUNTRY_LIECHTENSTEIN
Country COUNTRY_MACAU
Country COUNTRY_MADAGASCAR
Country COUNTRY_MALAWI
Country COUNTRY_MALI
Country COUNTRY_MARSHALL_ISLANDS
Country COUNTRY_MARTINIQUE
Country COUNTRY_MAURITANIA
Country COUNTRY_MAYOTTE
Country COUNTRY_MOLDOVA
Country COUNTRY_MONACO
Country COUNTRY_MONGOLIA
Country COUNTRY_MONTSERRAT
Country COUNTRY_MOZAMBIQUE
Country COUNTRY_MYANMAR
Country COUNTRY_NAMIBIA
Country COUNTRY_NAURU
Country COUNTRY_NEPAL
Country COUNTRY_NEW_CALEDONIA
Country COUNTRY_NIGER
Country COUNTRY_NIUE
Country COUNTRY_NORFOLK_ISLAND
Country COUNTRY_NORTHERN_CYPRUS
Country COUNTRY_NORTHERN_MARIANA_ISLANDS
Country COUNTRY_NORTH_KOREA
Country COUNTRY_NORTH_MACEDONIA
Country COUNTRY_PALAU
Country COUNTRY_PALESTINE
Country COUNTRY_PAPUA_NEW_GUINEA
Country COUNTRY_PITCAIRN
Country COUNTRY_REUNION
Country COUNTRY_RWANDA
Country COUNTRY_SAINT_BARTHELEMY
Country COUNTRY_SAINT_HELENA_ASCENSION_AND_TRISTIAN_DA_CUNHA
Country COUNTRY_SAINT_KITTS_AND_NEVIS
Country COUNTRY_SAINT_LUCIA
Country COUNTRY_SAINT_MARTIN
Country COUNTRY_SAINT_PIERRE_AND_MIQUELON
Country COUNTRY_SAINT_VINCENT_AND_THE_GRENADINES
Country COUNTRY_SAMOA
Country COUNTRY_SAN_MARINO
Country COUNTRY_SAO_TOME_AND_PRINCIPE
Country COUNTRY_SENEGAL
Country COUNTRY_SEYCHELLES
Country COUNTRY_SIERRA_LEONE
Country COUNTRY_SINT_MAARTEN
Country COUNTRY_SOLOMON_ISLANDS
Country COUNTRY_SOMALIA
Country COUNTRY_SOUTH_GEORGIA_AND_THE_SOUTH_SANDWICH_ISLANDS
Country COUNTRY_SOUTH_SUDAN
Country COUNTRY_SUDAN
Country COUNTRY_SURINAME
Country COUNTRY_SVALBARD_AND_JAN_MAYEN
Country COUNTRY_ESWATINI
Country COUNTRY_SYRIA
Country COUNTRY_TAJIKISTAN
Country COUNTRY_TANZANIA
Country COUNTRY_TOGO
Country COUNTRY_TOKELAU
Country COUNTRY_TONGA
Country COUNTRY_TRINIDAD_AND_TOBAGO
Country COUNTRY_TURKMENISTAN
Country COUNTRY_TURKS_AND_CAICOS_ISLANDS
Country COUNTRY_TUVALU
Country COUNTRY_UNITED_STATES_MINOR_OUTLYING_ISLANDS
Country COUNTRY_UZBEKISTAN
Country COUNTRY_VANUATU
Country COUNTRY_VATICAN_CITY
Country COUNTRY_VIRGIN_ISLANDS_BRITISH
Country COUNTRY_VIRGIN_ISLANDS_US
Country COUNTRY_WALLIS_AND_FUTUNA
Country COUNTRY_WESTERN_SAHARA
Country COUNTRY_YEMEN
Country COUNTRY_YUGOSLAVIA
Country COUNTRY_ZAMBIA
Country COUNTRY_ZIMBABWE
Country COUNTRY_SCHENGEN_AREA

CroppedImageResult

{
  "image": "string"
}

The result of the cropped image transformation with additional details.

Properties

Name Type Required Restrictions Description
image string true none The cropped image.

DataMatchResult

{
  "dateOfBirth": "NOT_PERFORMED",
  "dateOfExpiry": "NOT_PERFORMED",
  "documentNumber": "NOT_PERFORMED",
  "documentAdditionalNumber": "NOT_PERFORMED",
  "documentOptionalAdditionalNumber": "NOT_PERFORMED",
  "personalIdNumber": "NOT_PERFORMED",
  "dataMatchResult": "NOT_PERFORMED"
}

Result of data match check.

Properties

Name Type Required Restrictions Description
dateOfBirth any false none none

allOf

Name Type Required Restrictions Description
» anonymous DataMatchState false none We currently check document number, date of expiry, date of birth and date of issue fields.

and

Name Type Required Restrictions Description
» anonymous any false none The result of data match on date of birth field.

continued

Name Type Required Restrictions Description
dateOfExpiry any true none none

allOf

Name Type Required Restrictions Description
» anonymous DataMatchState false none We currently check document number, date of expiry, date of birth and date of issue fields.

and

Name Type Required Restrictions Description
» anonymous any false none The result of data match on date of expiry field.

continued

Name Type Required Restrictions Description
documentNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous DataMatchState false none We currently check document number, date of expiry, date of birth and date of issue fields.

and

Name Type Required Restrictions Description
» anonymous any false none The result of data match on document number field.

continued

Name Type Required Restrictions Description
documentAdditionalNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous DataMatchState false none We currently check document number, date of expiry, date of birth and date of issue fields.

and

Name Type Required Restrictions Description
» anonymous any false none The result of data match on document additional number field.

continued

Name Type Required Restrictions Description
documentOptionalAdditionalNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous DataMatchState false none We currently check document number, date of expiry, date of birth and date of issue fields.

and

Name Type Required Restrictions Description
» anonymous any false none The result of data match on document optional additional number field.

continued

Name Type Required Restrictions Description
personalIdNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous DataMatchState false none We currently check document number, date of expiry, date of birth and date of issue fields.

and

Name Type Required Restrictions Description
» anonymous any false none The result of data match on personal ID number field.

continued

Name Type Required Restrictions Description
dataMatchResult any false none none

allOf

Name Type Required Restrictions Description
» anonymous DataMatchState false none We currently check document number, date of expiry, date of birth and date of issue fields.

and

Name Type Required Restrictions Description
» anonymous any false none The result of data match on the whole document.

DataMatchState

"NOT_PERFORMED"

Data match state

Properties

Name Type Required Restrictions Description
Data match state string false none We currently check document number, date of expiry, date of birth and date of issue fields.

Enumerated Values

Property Value
Data match state NOT_PERFORMED
Data match state FAILED
Data match state SUCCESS

Date

{
  "day": 0,
  "month": 0,
  "year": 0,
  "successfullyParsed": true,
  "filledByDomainKnowledge": true,
  "originalString": "string"
}

Properties

Name Type Required Restrictions Description
day integer(int32)¦null false none Day in month
month integer(int32)¦null false none Month in year
year integer(int32)¦null false none Year
successfullyParsed boolean¦null false none True if date was successfully parsed
filledByDomainKnowledge boolean¦null false none True if date was filled by domain knowledge
originalString string¦null false none String used in date parsing

DateResult

{
  "day": 0,
  "month": 0,
  "year": 0,
  "successfullyParsed": true,
  "filledByDomainKnowledge": true,
  "originalString": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  }
}

Properties

Name Type Required Restrictions Description
day integer(int32)¦null false none Day in month
month integer(int32)¦null false none Month in year
year integer(int32)¦null false none Year
successfullyParsed boolean¦null false none True if date was successfully parsed
filledByDomainKnowledge boolean¦null false none True if date was filled by domain knowledge
originalString any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none String used in date parsing

DefaultResponse

{
  "message": "string",
  "traceId": "string",
  "executionId": "string"
}

Response type for exceptions.

Properties

Name Type Required Restrictions Description
message string¦null false none Exception message
traceId string¦null false none Provided identifier
executionId string true none Unique execution identifier

DependentInfo

{
  "dateOfBirth": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "sex": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "documentNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "fullName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  }
}

The dependents info.

Properties

Name Type Required Restrictions Description
dateOfBirth any false none none

allOf

Name Type Required Restrictions Description
» anonymous DateResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The date of birth of the dependent.

continued

Name Type Required Restrictions Description
sex any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The sex or gender of the dependent.

continued

Name Type Required Restrictions Description
documentNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The document number of the dependent.

continued

Name Type Required Restrictions Description
fullName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The full name of the dependent.

DetailedCroppedImageResult

{
  "image": "string",
  "location": {
    "topLeftCorner": {
      "x": 0.1,
      "y": 0.1
    },
    "dimensions": {
      "width": 0.1,
      "height": 0.1
    }
  },
  "side": "FIRST"
}

The result of the cropped image transformation with additional details.

Properties

Name Type Required Restrictions Description
image string true none The cropped image.
location any false none none

allOf

Name Type Required Restrictions Description
» anonymous RectangleF false none none

and

Name Type Required Restrictions Description
» anonymous any false none Location of the image. Coordinates are relative to the dewarped image.

continued

Name Type Required Restrictions Description
side any false none none

allOf

Name Type Required Restrictions Description
» anonymous ScanningSide false none Represents the sides of the document that can be scanned.

and

Name Type Required Restrictions Description
» anonymous any false none The side of the document where the cropped image was taken.

DetailedFieldType

{
  "fieldType": "ADDITIONAL_ADDRESS_INFORMATION",
  "alphabetType": "LATIN"
}

Properties

Name Type Required Restrictions Description
fieldType any false none none

allOf

Name Type Required Restrictions Description
» anonymous FieldType false none none

and

Name Type Required Restrictions Description
» anonymous any false none Field type

continued

Name Type Required Restrictions Description
alphabetType any false none none

allOf

Name Type Required Restrictions Description
» anonymous AlphabetType false none none

and

Name Type Required Restrictions Description
» anonymous any false none Alphabet type

DetectionPoints

{
  "points": [
    {
      "x": 0,
      "y": 0
    }
  ]
}

Points array with coordinates of barcode detection.

Properties

Name Type Required Restrictions Description
points [Points]¦null false none none

Dimensions

{
  "width": 0.1,
  "height": 0.1
}

Properties

Name Type Required Restrictions Description
width number(float)¦null false none none
height number(float)¦null false none none

DocumentAnonymizationSettings

{
  "documentFilter": {
    "country": "COUNTRY_NONE",
    "region": "REGION_NONE",
    "type": "TYPE_NONE"
  },
  "fields": [
    "ADDITIONAL_ADDRESS_INFORMATION"
  ],
  "documentNumberAnonymizationSettings": {
    "prefixDigitsVisible": 0,
    "suffixDigitsVisible": 0
  }
}

Redact fields for specific document class. Fields specified by requirements or laws for a specific document will be redacted regardless of this setting. Based on anonymizationMode setting, data will be redacted from the image, the result or both.

Properties

Name Type Required Restrictions Description
documentFilter any false none none

allOf

Name Type Required Restrictions Description
» anonymous DocumentFilter false none Specified fields will be anonymized if filter conditions are met.

and

Name Type Required Restrictions Description
» anonymous any false none Specified fields will be anonymized if filter conditions are met.

continued

Name Type Required Restrictions Description
fields [FieldType] true none Fields to be anonymized.
documentNumberAnonymizationSettings any false none none

allOf

Name Type Required Restrictions Description
» anonymous DocumentNumberAnonymizationSettings false none none

and

Name Type Required Restrictions Description
» anonymous any false none If set, document number will be partially anonymized. Otherwise, document number anonymization settings will not be taken into account during anonymization.

DocumentClassInfo

{
  "country": "COUNTRY_NONE",
  "region": "REGION_NONE",
  "type": "TYPE_NONE",
  "countryName": "string",
  "isoAlpha3CountryCode": "string",
  "isoAlpha2CountryCode": "string",
  "isoNumericCountryCode": "string"
}

The document class information.

Properties

Name Type Required Restrictions Description
country Country¦null false none Document country.
region Region¦null false none Document region.
type Type¦null false none Document type.
countryName string¦null false none The name of the country that issued the scanned document.
isoAlpha3CountryCode string¦null false none The 3 letter ISO code of the country that issued the scanned document.
isoAlpha2CountryCode string¦null false none The 2 letter ISO code of the country that issued the scanned document.
isoNumericCountryCode string¦null false none The ISO numeric code of the country that issued the scanned document.

DocumentFilter

{
  "country": "COUNTRY_NONE",
  "region": "REGION_NONE",
  "type": "TYPE_NONE"
}

Specified fields will be anonymized if filter conditions are met.

Properties

Name Type Required Restrictions Description
country any false none none

allOf

Name Type Required Restrictions Description
» anonymous Country false none Document country.

and

Name Type Required Restrictions Description
» anonymous any false none If set, specified fields will be anonymized on documents issued by specified country only.Otherwise, issuing country will not be taken into account during anonymization.

continued

Name Type Required Restrictions Description
region any false none none

allOf

Name Type Required Restrictions Description
» anonymous Region false none Document region.

and

Name Type Required Restrictions Description
» anonymous any false none If set, specified fields will be anonymized on documents issued by specified region only. Otherwise, issuing region will not be taken into account during anonymization.

continued

Name Type Required Restrictions Description
type any false none none

allOf

Name Type Required Restrictions Description
» anonymous Type false none Document type.

and

Name Type Required Restrictions Description
» anonymous any false none If set, specified fields will be anonymized on documents issued by specified type only. Otherwise, document type will not be taken into account during anonymization.

DocumentImageColorStatus

"NOT_AVAILABLE"

Document image color status

Properties

Name Type Required Restrictions Description
Document image color status string false none The color status determined from scanned image.

Enumerated Values

Property Value
Document image color status NOT_AVAILABLE
Document image color status BLACK_AND_WHITE
Document image color status COLOR

DocumentLivenessCheck

{
  "front": {
    "screenCheck": {
      "result": "NOT_PERFORMED",
      "matchLevel": "DISABLED"
    },
    "photocopyCheck": {
      "result": "NOT_PERFORMED",
      "matchLevel": "DISABLED"
    },
    "handPresenceCheck": "NOT_PERFORMED"
  },
  "back": {
    "screenCheck": {
      "result": "NOT_PERFORMED",
      "matchLevel": "DISABLED"
    },
    "photocopyCheck": {
      "result": "NOT_PERFORMED",
      "matchLevel": "DISABLED"
    },
    "handPresenceCheck": "NOT_PERFORMED"
  }
}

Properties

Name Type Required Restrictions Description
front DocumentLivenessSingleSideCheckResult¦null false none none
back DocumentLivenessSingleSideCheckResult¦null false none none

DocumentLivenessSingleSideCheckResult

{
  "screenCheck": {
    "result": "NOT_PERFORMED",
    "matchLevel": "DISABLED"
  },
  "photocopyCheck": {
    "result": "NOT_PERFORMED",
    "matchLevel": "DISABLED"
  },
  "handPresenceCheck": "NOT_PERFORMED"
}

Properties

Name Type Required Restrictions Description
screenCheck TieredCheck¦null false none none
photocopyCheck TieredCheck¦null false none none
handPresenceCheck CheckResult¦null false none none

DocumentNumberAnonymizationSettings

{
  "prefixDigitsVisible": 0,
  "suffixDigitsVisible": 0
}

Properties

Name Type Required Restrictions Description
prefixDigitsVisible integer(int32)¦null false none Defines how many digits at the beginning of the document number remain visible after anonymization.
suffixDigitsVisible integer(int32)¦null false none Defines how many digits at the end of the document number remain visible after anonymization.

DocumentOrientation

"HORIZONTAL"

Card orientation

Properties

Name Type Required Restrictions Description
Card orientation string false none Orientation determined from the scanned image.

Enumerated Values

Property Value
Card orientation HORIZONTAL
Card orientation VERTICAL
Card orientation NOT_AVAILABLE

DocumentRotation

"NOT_AVAILABLE"

Card rotation

Properties

Name Type Required Restrictions Description
Card rotation string false none Rotation determined from the scanned image.

Enumerated Values

Property Value
Card rotation NOT_AVAILABLE
Card rotation ZERO
Card rotation CLOCKWISE_90
Card rotation COUNTER_CLOCKWISE_90
Card rotation UPSIDE_DOWN

DocumentRules

{
  "documentFilter": {
    "country": "COUNTRY_NONE",
    "region": "REGION_NONE",
    "type": "TYPE_NONE"
  },
  "fields": [
    {
      "fieldType": "ADDITIONAL_ADDRESS_INFORMATION",
      "alphabetType": "LATIN"
    }
  ]
}

Define custom rules for specific document class. The new class rules will be a combination of our internal and user-defined rules. The more detailed class filter will have priority over the other.

Properties

Name Type Required Restrictions Description
documentFilter any false none none

allOf

Name Type Required Restrictions Description
» anonymous DocumentFilter false none Specified fields will be anonymized if filter conditions are met.

and

Name Type Required Restrictions Description
» anonymous any false none Specified fields will overrule our class field rules if filter conditions are met.

continued

Name Type Required Restrictions Description
fields [DetailedFieldType]¦null false none Fields to overrule our class field rules.

DriverLicenseDetailedInfo

{
  "restrictions": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "endorsements": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "vehicleClass": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "conditions": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "vehicleClassesInfo": [
    {
      "vehicleClass": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "licenceType": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "effectiveDate": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "expiryDate": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      }
    }
  ]
}

The driver license detailed info.

Properties

Name Type Required Restrictions Description
restrictions any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The restrictions to driving privileges for the United States driver license owner.

continued

Name Type Required Restrictions Description
endorsements any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional privileges granted to the United States driver license owner.

continued

Name Type Required Restrictions Description
vehicleClass any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The type of vehicle the driver license owner has privilege to drive.

continued

Name Type Required Restrictions Description
conditions any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The driver license conditions.

continued

Name Type Required Restrictions Description
vehicleClassesInfo [VehicleClassInfo]¦null false none The additional information on vehicle class.

FieldType

"ADDITIONAL_ADDRESS_INFORMATION"

Properties

Name Type Required Restrictions Description
anonymous string false none none

Enumerated Values

Property Value
anonymous ADDITIONAL_ADDRESS_INFORMATION
anonymous ADDITIONAL_NAME_INFORMATION
anonymous ADDITIONAL_OPTIONAL_ADDRESS_INFORMATION
anonymous ADDITIONAL_PERSONAL_ID_NUMBER
anonymous ADDRESS
anonymous CLASS_EFFECTIVE_DATE
anonymous CLASS_EXPIRY_DATE
anonymous CONDITIONS
anonymous DATE_OF_BIRTH
anonymous DATE_OF_EXPIRY
anonymous DATE_OF_ISSUE
anonymous DOCUMENT_ADDITIONAL_NUMBER
anonymous DOCUMENT_OPTIONAL_ADDITIONAL_NUMBER
anonymous DOCUMENT_NUMBER
anonymous EMPLOYER
anonymous ENDORSEMENTS
anonymous FATHERS_NAME
anonymous FIRST_NAME
anonymous FULL_NAME
anonymous ISSUING_AUTHORITY
anonymous LAST_NAME
anonymous LICENCE_TYPE
anonymous LOCALIZED_NAME
anonymous MARITAL_STATUS
anonymous MOTHERS_NAME
anonymous MRZ
anonymous NATIONALITY
anonymous PERSONAL_ID_NUMBER
anonymous PLACE_OF_BIRTH
anonymous PROFESSION
anonymous RACE
anonymous RELIGION
anonymous RESIDENTIAL_STATUS
anonymous RESTRICTIONS
anonymous SEX
anonymous VEHICLE_CLASS
anonymous BLOOD_TYPE
anonymous SPONSOR
anonymous VISA_TYPE
anonymous NUMBER_OF_ENTRIES
anonymous DURATION_OF_STAY
anonymous DOCUMENT_SUBTYPE
anonymous REMARKS
anonymous RESIDENCE_PERMIT_TYPE
anonymous MANUFACTURING_YEAR
anonymous VEHICLE_TYPE
anonymous DEPENDENT_DATE_OF_BIRTH
anonymous DEPENDENT_SEX
anonymous DEPENDENT_DOCUMENT_NUMBER
anonymous DEPENDENT_FULL_NAME
anonymous ELIGIBILITY_CATEGORY
anonymous SPECIFIC_DOCUMENT_VALIDITY
anonymous VEHICLE_OWNER
anonymous NATIONAL_INSURANCE_NUMBER
anonymous COUNTRY_CODE
anonymous CERTIFICATE_NUMBER
anonymous MUNICIPALITY_OF_REGISTRATION
anonymous LOCALITY_CODE
anonymous MAIDEN_NAME
anonymous STATE_CODE
anonymous DATE_OF_ENTRY
anonymous MUNICIPALITY_CODE
anonymous POLLING_STATION_CODE
anonymous SECTION_CODE
anonymous REGISTRATION_CENTER_CODE
anonymous STATE_NAME

HealthCheckType

"LIVENESS"

Properties

Name Type Required Restrictions Description
anonymous string false none none

Enumerated Values

Property Value
anonymous LIVENESS
anonymous READINESS

HealthResult

{
  "name": "string",
  "status": {
    "name": "string",
    "description": "string",
    "operational": true,
    "severity": 0
  },
  "details": null
}

Properties

Name Type Required Restrictions Description
name string false none none
status HealthStatus false none none
details any false none none

HealthStatus

{
  "name": "string",
  "description": "string",
  "operational": true,
  "severity": 0
}

Properties

Name Type Required Restrictions Description
name string true none none
description string¦null true none none
operational boolean¦null true none none
severity integer(int32)¦null true none none

ImageAnalysisDetectionStatus

"NOT_AVAILABLE"

Image analysis detection status

Properties

Name Type Required Restrictions Description
Image analysis detection status string false none Detection status determined from the scanned image.

Enumerated Values

Property Value
Image analysis detection status NOT_AVAILABLE
Image analysis detection status NOT_DETECTED
Image analysis detection status DETECTED

ImageAnalysisLightingStatus

"NOT_AVAILABLE"

Image analysis lighting status

Properties

Name Type Required Restrictions Description
Image analysis lighting status string false none Lighting status determined from the scanned image.

Enumerated Values

Property Value
Image analysis lighting status NOT_AVAILABLE
Image analysis lighting status TOO_BRIGHT
Image analysis lighting status TOO_DARK
Image analysis lighting status NORMAL

ImageAnalysisResult

{
  "blurDetectionStatus": "NOT_AVAILABLE",
  "glareDetectionStatus": "NOT_AVAILABLE",
  "documentImageColorStatus": "NOT_AVAILABLE",
  "documentImageMoireStatus": "NOT_AVAILABLE",
  "faceDetectionStatus": "NOT_AVAILABLE",
  "mrzDetectionStatus": "NOT_AVAILABLE",
  "barcodeDetectionStatus": "NOT_AVAILABLE",
  "documentOrientation": "HORIZONTAL",
  "documentRotation": "NOT_AVAILABLE",
  "realIDDetectionStatus": "NOT_AVAILABLE",
  "documentHandOcclusionStatus": "NOT_AVAILABLE",
  "documentLightingStatus": "NOT_AVAILABLE"
}

Various information obtained by analysing the scanned image.

Properties

Name Type Required Restrictions Description
blurDetectionStatus ImageAnalysisDetectionStatus¦null false none Detection status determined from the scanned image.
glareDetectionStatus ImageAnalysisDetectionStatus¦null false none Detection status determined from the scanned image.
documentImageColorStatus DocumentImageColorStatus¦null false none The color status determined from scanned image.
documentImageMoireStatus ImageAnalysisDetectionStatus¦null false none Detection status determined from the scanned image.
faceDetectionStatus ImageAnalysisDetectionStatus¦null false none Detection status determined from the scanned image.
mrzDetectionStatus ImageAnalysisDetectionStatus¦null false none Detection status determined from the scanned image.
barcodeDetectionStatus ImageAnalysisDetectionStatus¦null false none Detection status determined from the scanned image.
documentOrientation DocumentOrientation¦null false none Orientation determined from the scanned image.
documentRotation DocumentRotation¦null false none Rotation determined from the scanned image.
realIDDetectionStatus ImageAnalysisDetectionStatus¦null false none Detection status determined from the scanned image.
documentHandOcclusionStatus ImageAnalysisDetectionStatus¦null false none Detection status determined from the scanned image.
documentLightingStatus ImageAnalysisLightingStatus¦null false none Lighting status determined from the scanned image.

ImageExtractionType

"FULL_DOCUMENT"

Properties

Name Type Required Restrictions Description
anonymous string false none none

Enumerated Values

Property Value
anonymous FULL_DOCUMENT
anonymous FACE
anonymous SIGNATURE

ImageFormat

"JPG"

Image Format

Properties

Name Type Required Restrictions Description
Image Format string false none none

Enumerated Values

Property Value
Image Format JPG
Image Format PNG
Image Format QOI

ImageSource

{
  "imageUrl": "string",
  "imageBase64": "string"
}

Url or base64 string of the image. The Base64 image takes precedence if url and base64 are defined.

Properties

Name Type Required Restrictions Description
imageUrl string¦null false none Url string of the image.
imageBase64 string¦null false none Base64 string of the image.

LocationInfo

{
  "topLeftCorner": {
    "x": 0.1,
    "y": 0.1
  },
  "dimensions": {
    "width": 0.1,
    "height": 0.1
  },
  "side": "FIRST"
}

Properties

Name Type Required Restrictions Description
topLeftCorner Point2df¦null false none none
dimensions Dimensions¦null false none none
side ScanningSide¦null false none Represents the sides of the document that can be scanned.

MatchLevel

"DISABLED"

Properties

Name Type Required Restrictions Description
anonymous string false none none

Enumerated Values

Property Value
anonymous DISABLED
anonymous LEVEL1
anonymous LEVEL2
anonymous LEVEL3
anonymous LEVEL4
anonymous LEVEL5
anonymous LEVEL6
anonymous LEVEL7
anonymous LEVEL8
anonymous LEVEL9
anonymous LEVEL10

MicroblinkEndpointRequest

{}

Properties

None

MrtdDocumentType

"UNKNOWN"

Mrtd document type

Properties

Name Type Required Restrictions Description
Mrtd document type string false none Possible types of Machine Readable Travel Documents (MRTDs).

Enumerated Values

Property Value
Mrtd document type UNKNOWN
Mrtd document type IDENTITY_CARD
Mrtd document type PASSPORT
Mrtd document type VISA
Mrtd document type GREEN_CARD
Mrtd document type MALAYSIAN_PASS_IMM13P
Mrtd document type DRIVER_LICENSE
Mrtd document type INTERNATIONAL_TRAVEL_DOCUMENT
Mrtd document type BORDER_CROSSING_CARD

MrzResult

{
  "rawMrzString": "string",
  "documentCode": "string",
  "issuer": "string",
  "documentNumber": "string",
  "opt1": "string",
  "opt2": "string",
  "gender": "string",
  "nationality": "string",
  "primaryId": "string",
  "secondaryId": "string",
  "verified": true,
  "dateOfBirth": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": "string"
  },
  "dateOfExpiry": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": "string"
  },
  "documentType": "UNKNOWN",
  "issuerName": "string",
  "nationalityName": "string"
}

The data extracted from the machine readable zone.

Properties

Name Type Required Restrictions Description
rawMrzString string¦null false none The entire Machine Readable Zone text from ID. This string is usually used for parsing other elements.
NOTE: This string is available only if OCR result was parsed successfully.
documentCode string¦null false none The document code. Document code contains two characters. For MRTD the first character shall be A, C or I. The second character shall be discretion of the issuing State or organization except that V shall not be used, and C shall not be used after A except in the crew member certificate. On machine-readable passports (MRP) first character shall be P to designate an MRP. One additional letter may be used, at the discretion of the issuing State or organization, to designate a particular MRP. If the second character position is not used for this purpose, it shall be filled by the filter character <.
issuer string¦null false none Three-letter or two-letter code which indicate the issuing State. Three-letter codes are based on Aplha-3 codes for entities specified in ISO 3166-1, with extensions for certain States. Two-letter codes are based on Aplha-2 codes for entities specified in ISO 3166-1, with extensions for certain States.
documentNumber string¦null false none The document number. Document number contains up to 9 characters. Element does not exist on US Green Card. To see which document was scanned use documentType property.
opt1 string¦null false none The first optional data. Contains empty string if not available. Element does not exist on US Green Card. To see which document was scanned use the documentType property.
opt2 string¦null false none The second optional data. Contains empty string if not available. Element does not exist on Passports and Visas. To see which document was scanned use the documentType property.
gender string¦null false none The gender of the card holder. Gender is specified by use of the single initial, capital letter F for female, M for male or < for unspecified.
nationality string¦null false none The nationality of the holder represented by a three-letter or two-letter code. Three-letter codes are based on Alpha-3 codes for entities specified in ISO 3166-1, with extensions for certain States. Two-letter codes are based on Aplha-2 codes for entities specified in ISO 3166-1, with extensions for certain States.
primaryId string¦null false none The primary indentifier. If there is more than one component, they are separated with space.
secondaryId string¦null false none The secondary identifier. If there is more than one component, they are separated with space.
verified boolean¦null false none True if all check digits inside MRZ are correct, false otherwise.
dateOfBirth Date¦null false none none
dateOfExpiry Date¦null false none none
documentType MrtdDocumentType¦null false none Possible types of Machine Readable Travel Documents (MRTDs).
issuerName string¦null false none Returns full issuer name that is expanded from the three-letter or two-letter code which indicate the issuing State.
nationalityName string¦null false none Returns full nationality of the holder, which is expanded from the three-letter or two-letter nationality code.

Point2df

{
  "x": 0.1,
  "y": 0.1
}

Properties

Name Type Required Restrictions Description
x number(float)¦null false none none
y number(float)¦null false none none

Points

{
  "x": 0,
  "y": 0
}

Properties

Name Type Required Restrictions Description
x integer(int32)¦null false none X coordinate of a point.
y integer(int32)¦null false none Y coordinate of a point.

ProcessingStatus

"SUCCESS"

Processing status

Properties

Name Type Required Restrictions Description
Processing status string false none Detailed information about the recognition process.

Enumerated Values

Property Value
Processing status SUCCESS
Processing status DETECTION_FAILED
Processing status IMAGE_PREPROCESSING_FAILED
Processing status STABILITY_TEST_FAILED
Processing status SCANNING_WRONG_SIDE
Processing status FIELD_IDENTIFICATION_FAILED
Processing status MANDATORY_FIELD_MISSING
Processing status INVALID_CHARACTERS_FOUND
Processing status IMAGE_RETURN_FAILED
Processing status BARCODE_RECOGNITION_FAILED
Processing status MRZ_PARSING_FAILED
Processing status DOCUMENT_FILTERED
Processing status UNSUPPORTED_DOCUMENT
Processing status AWAITING_OTHER_SIDE
Processing status NOT_SCANNED
Processing status BARCODE_DETECTION_FAILED

RecognitionMode

"NONE"

Recognition mode

Properties

Name Type Required Restrictions Description
Recognition mode string false none Recognition mode used to scan current document.

Enumerated Values

Property Value
Recognition mode NONE
Recognition mode MRZ_ID
Recognition mode MRZ_VISA
Recognition mode MRZ_PASSPORT
Recognition mode PHOTO_ID
Recognition mode FULL_RECOGNITION
Recognition mode BARCODE_ID

RectangleF

{
  "topLeftCorner": {
    "x": 0.1,
    "y": 0.1
  },
  "dimensions": {
    "width": 0.1,
    "height": 0.1
  }
}

Properties

Name Type Required Restrictions Description
topLeftCorner Point2df¦null false none none
dimensions Dimensions¦null false none none

Region

"REGION_NONE"

Region

Properties

Name Type Required Restrictions Description
Region string false none Document region.

Enumerated Values

Property Value
Region REGION_NONE
Region REGION_ALABAMA
Region REGION_ALASKA
Region REGION_ALBERTA
Region REGION_ARIZONA
Region REGION_ARKANSAS
Region REGION_AUSTRALIAN_CAPITAL_TERRITORY
Region REGION_BRITISH_COLUMBIA
Region REGION_CALIFORNIA
Region REGION_COLORADO
Region REGION_CONNECTICUT
Region REGION_DELAWARE
Region REGION_DISTRICT_OF_COLUMBIA
Region REGION_FLORIDA
Region REGION_GEORGIA
Region REGION_HAWAII
Region REGION_IDAHO
Region REGION_ILLINOIS
Region REGION_INDIANA
Region REGION_IOWA
Region REGION_KANSAS
Region REGION_KENTUCKY
Region REGION_LOUISIANA
Region REGION_MAINE
Region REGION_MANITOBA
Region REGION_MARYLAND
Region REGION_MASSACHUSETTS
Region REGION_MICHIGAN
Region REGION_MINNESOTA
Region REGION_MISSISSIPPI
Region REGION_MISSOURI
Region REGION_MONTANA
Region REGION_NEBRASKA
Region REGION_NEVADA
Region REGION_NEW_BRUNSWICK
Region REGION_NEW_HAMPSHIRE
Region REGION_NEW_JERSEY
Region REGION_NEW_MEXICO
Region REGION_NEW_SOUTH_WALES
Region REGION_NEW_YORK
Region REGION_NORTHERN_TERRITORY
Region REGION_NORTH_CAROLINA
Region REGION_NORTH_DAKOTA
Region REGION_NOVA_SCOTIA
Region REGION_OHIO
Region REGION_OKLAHOMA
Region REGION_ONTARIO
Region REGION_OREGON
Region REGION_PENNSYLVANIA
Region REGION_QUEBEC
Region REGION_QUEENSLAND
Region REGION_RHODE_ISLAND
Region REGION_SASKATCHEWAN
Region REGION_SOUTH_AUSTRALIA
Region REGION_SOUTH_CAROLINA
Region REGION_SOUTH_DAKOTA
Region REGION_TASMANIA
Region REGION_TENNESSEE
Region REGION_TEXAS
Region REGION_UTAH
Region REGION_VERMONT
Region REGION_VICTORIA
Region REGION_VIRGINIA
Region REGION_WASHINGTON
Region REGION_WESTERN_AUSTRALIA
Region REGION_WEST_VIRGINIA
Region REGION_WISCONSIN
Region REGION_WYOMING
Region REGION_YUKON
Region REGION_CIUDAD_DE_MEXICO
Region REGION_JALISCO
Region REGION_NEWFOUNDLAND_AND_LABRADOR
Region REGION_NUEVO_LEON
Region REGION_BAJA_CALIFORNIA
Region REGION_CHIHUAHUA
Region REGION_GUANAJUATO
Region REGION_GUERRERO
Region REGION_MEXICO
Region REGION_MICHOACAN
Region REGION_NEW_YORK_CITY
Region REGION_TAMAULIPAS
Region REGION_VERACRUZ
Region REGION_CHIAPAS
Region REGION_COAHUILA
Region REGION_DURANGO
Region REGION_GUERRERO_COCULA
Region REGION_GUERRERO_JUCHITAN
Region REGION_GUERRERO_TEPECOACUILCO
Region REGION_GUERRERO_TLACOAPA
Region REGION_GUJARAT
Region REGION_HIDALGO
Region REGION_KARNATAKA
Region REGION_KERALA
Region REGION_KHYBER_PAKHTUNKHWA
Region REGION_MADHYA_PRADESH
Region REGION_MAHARASHTRA
Region REGION_MORELOS
Region REGION_NAYARIT
Region REGION_OAXACA
Region REGION_PUEBLA
Region REGION_PUNJAB
Region REGION_QUERETARO
Region REGION_SAN_LUIS_POTOSI
Region REGION_SINALOA
Region REGION_SONORA
Region REGION_TABASCO
Region REGION_TAMIL_NADU
Region REGION_YUCATAN
Region REGION_ZACATECAS
Region REGION_AGUASCALIENTES
Region REGION_BAJA_CALIFORNIA_SUR
Region REGION_CAMPECHE
Region REGION_COLIMA
Region REGION_QUINTANA_ROO_BENITO_JUAREZ
Region REGION_QUINTANA_ROO
Region REGION_QUINTANA_ROO_SOLIDARIDAD
Region REGION_TLAXCALA
Region REGION_QUINTANA_ROO_COZUMEL
Region REGION_SAO_PAOLO
Region REGION_RIO_DE_JANEIRO
Region REGION_RIO_GRANDE_DO_SUL
Region REGION_NORTHWEST_TERRITORIES
Region REGION_NUNAVUT
Region REGION_PRINCE_EDWARD_ISLAND
Region REGION_DISTRITO_FEDERAL
Region REGION_MARANHAO
Region REGION_MATO_GROSSO
Region REGION_MINAS_GERAIS
Region REGION_PARA
Region REGION_PARANA
Region REGION_PERNAMBUCO
Region REGION_SANTA_CATARINA
Region REGION_ANDHRA_PRADESH
Region REGION_CEARA
Region REGION_GOIAS
Region REGION_GUERRERO_ACAPULCO_DE_JUAREZ
Region REGION_HARYANA
Region REGION_SERGIPE
Region REGION_ALAGOAS
Region REGION_BANGSAMORO
Region REGION_TELANGANA

ResultState

"EMPTY"

Result state

Properties

Name Type Required Restrictions Description
Result state string false none Possible states of the Recognizer's result.

Enumerated Values

Property Value
Result state EMPTY
Result state UNCERTAIN
Result state VALID
Result state STAGE_VALID

ScanningSide

"FIRST"

Scanning side

Properties

Name Type Required Restrictions Description
Scanning side string false none Represents the sides of the document that can be scanned.

Enumerated Values

Property Value
Scanning side FIRST
Scanning side SECOND

StringResult

{
  "latin": "string",
  "latinLocation": {
    "topLeftCorner": {
      "x": 0.1,
      "y": 0.1
    },
    "dimensions": {
      "width": 0.1,
      "height": 0.1
    },
    "side": "FIRST"
  },
  "cyrillic": "string",
  "cyrillicLocation": {
    "topLeftCorner": {
      "x": 0.1,
      "y": 0.1
    },
    "dimensions": {
      "width": 0.1,
      "height": 0.1
    },
    "side": "FIRST"
  },
  "arabic": "string",
  "arabicLocation": {
    "topLeftCorner": {
      "x": 0.1,
      "y": 0.1
    },
    "dimensions": {
      "width": 0.1,
      "height": 0.1
    },
    "side": "FIRST"
  },
  "greek": "string",
  "greekLocation": {
    "topLeftCorner": {
      "x": 0.1,
      "y": 0.1
    },
    "dimensions": {
      "width": 0.1,
      "height": 0.1
    },
    "side": "FIRST"
  }
}

Properties

Name Type Required Restrictions Description
latin string¦null false none The result of recognition in latin.
latinLocation any false none none

allOf

Name Type Required Restrictions Description
» anonymous LocationInfo false none none

and

Name Type Required Restrictions Description
» anonymous any false none The location latin recognition.

continued

Name Type Required Restrictions Description
cyrillic string¦null false none The result of recognition in cyrillic.
cyrillicLocation any false none none

allOf

Name Type Required Restrictions Description
» anonymous LocationInfo false none none

and

Name Type Required Restrictions Description
» anonymous any false none The location cyrillic recognition.

continued

Name Type Required Restrictions Description
arabic string¦null false none The result of recognition in arabic.
arabicLocation any false none none

allOf

Name Type Required Restrictions Description
» anonymous LocationInfo false none none

and

Name Type Required Restrictions Description
» anonymous any false none The location arabic recognition.

continued

Name Type Required Restrictions Description
greek string¦null false none The result of recognition in greek.
greekLocation any false none none

allOf

Name Type Required Restrictions Description
» anonymous LocationInfo false none none

and

Name Type Required Restrictions Description
» anonymous any false none The location greek recognition.

TieredCheck

{
  "result": "NOT_PERFORMED",
  "matchLevel": "DISABLED"
}

Properties

Name Type Required Restrictions Description
result CheckResult¦null false none none
matchLevel MatchLevel¦null false none none

Type

"TYPE_NONE"

Type

Properties

Name Type Required Restrictions Description
Type string false none Document type.

Enumerated Values

Property Value
Type TYPE_NONE
Type TYPE_CONSULAR_ID
Type TYPE_DL
Type TYPE_DL_PUBLIC_SERVICES_CARD
Type TYPE_EMPLOYMENT_PASS
Type TYPE_FIN_CARD
Type TYPE_ID
Type TYPE_MULTIPURPOSE_ID
Type TYPE_MyKad
Type TYPE_MyKid
Type TYPE_MyPR
Type TYPE_MyTentera
Type TYPE_PAN_CARD
Type TYPE_PROFESSIONAL_ID
Type TYPE_PUBLIC_SERVICES_CARD
Type TYPE_RESIDENCE_PERMIT
Type TYPE_RESIDENT_ID
Type TYPE_TEMPORARY_RESIDENCE_PERMIT
Type TYPE_VOTER_ID
Type TYPE_WORK_PERMIT
Type TYPE_iKAD
Type TYPE_MILITARY_ID
Type TYPE_MyKAS
Type TYPE_SOCIAL_SECURITY_CARD
Type TYPE_HEALTH_INSURANCE_CARD
Type TYPE_PASSPORT
Type TYPE_S_PASS
Type TYPE_ADDRESS_CARD
Type TYPE_ALIEN_ID
Type TYPE_ALIEN_PASSPORT
Type TYPE_GREEN_CARD
Type TYPE_MINORS_ID
Type TYPE_POSTAL_ID
Type TYPE_PROFESSIONAL_DL
Type TYPE_TAX_ID
Type TYPE_WEAPON_PERMIT
Type TYPE_VISA
Type TYPE_BORDER_CROSSING_CARD
Type TYPE_DRIVER_CARD
Type TYPE_GLOBAL_ENTRY_CARD
Type TYPE_MyPolis
Type TYPE_NEXUS_CARD
Type TYPE_PASSPORT_CARD
Type TYPE_PROOF_OF_AGE_CARD
Type TYPE_REFUGEE_ID
Type TYPE_TRIBAL_ID
Type TYPE_VETERAN_ID
Type TYPE_CITIZENSHIP_CERTIFICATE
Type TYPE_MY_NUMBER_CARD
Type TYPE_CONSULAR_PASSPORT
Type TYPE_MINORS_PASSPORT
Type TYPE_MINORS_PUBLIC_SERVICES_CARD
Type TYPE_DRIVING_PRIVILEGE_CARD
Type TYPE_ASYLUM_REQUEST
Type TYPE_DRIVER_QUALIFICATION_CARD
Type TYPE_PROVISIONAL_DL
Type TYPE_REFUGEE_PASSPORT
Type TYPE_SPECIAL_ID
Type TYPE_UNIFORMED_SERVICES_ID
Type TYPE_IMMIGRANT_VISA
Type TYPE_CONSULAR_VOTER_ID
Type TYPE_TWIC_CARD
Type TYPE_EXIT_ENTRY_PERMIT
Type TYPE_MAINLAND_TRAVEL_PERMIT_TAIWAN
Type TYPE_NBI_CLEARANCE
Type TYPE_PROOF_OF_REGISTRATION
Type TYPE_TEMPORARY_PROTECTION_PERMIT
Type TYPE_AFGHAN_CITIZEN_CARD
Type TYPE_EID
Type TYPE_PASS
Type TYPE_SIS_ID
Type TYPE_ASIC_CARD
Type TYPE_BIDOON_CARD
Type TYPE_INTERIM_HEALTH_INSURANCE_CARD
Type TYPE_NON_VOTER_ID
Type TYPE_RECIPROCAL_HEALTH_INSURANCE_CARD
Type TYPE_VEHICLE_REGISTRATION
Type TYPE_ESAAD_CARD
Type TYPE_REGISTRATION_CERTIFICATE
Type TYPE_MEDICAL_MARIJUANA_ID
Type TYPE_NON_CARD_TRIBAL_ID
Type TYPE_DIPLOMATIC_ID
Type TYPE_EMERGENCY_PASSPORT
Type TYPE_TEMPORARY_PASSPORT
Type TYPE_METIS_FEDERATION_CARD
Type TYPE_ADR_CERTIFICATE

VIZResult

{
  "firstName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "lastName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "fullName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "documentSubtype": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "remarks": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "residencePermitType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "manufacturingYear": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "vehicleType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "eligibilityCategory": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "specificDocumentValidity": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dependentsInfo": [
    {
      "dateOfBirth": {
        "day": 0,
        "month": 0,
        "year": 0,
        "successfullyParsed": true,
        "filledByDomainKnowledge": true,
        "originalString": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        }
      },
      "sex": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "documentNumber": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      },
      "fullName": {
        "latin": "string",
        "latinLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "cyrillic": "string",
        "cyrillicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "arabic": "string",
        "arabicLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        },
        "greek": "string",
        "greekLocation": {
          "topLeftCorner": {
            "x": 0.1,
            "y": 0.1
          },
          "dimensions": {
            "width": 0.1,
            "height": 0.1
          },
          "side": "FIRST"
        }
      }
    }
  ],
  "vehicleOwner": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "certificateNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "countryCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "nationalInsuranceNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalNameInformation": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "localizedName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "address": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalAddressInformation": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalOptionalAddressInformation": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "placeOfBirth": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "nationality": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "race": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "religion": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "profession": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "maritalStatus": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "residentialStatus": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "employer": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "sex": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dateOfBirth": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "dateOfIssue": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "dateOfExpiry": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "dateOfExpiryPermanent": true,
  "documentNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "personalIdNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "documentAdditionalNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "additionalPersonalIdNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "documentOptionalAdditionalNumber": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "issuingAuthority": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "fathersName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "mothersName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "dateOfEntry": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "localityCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "maidenName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "municipalityCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "municipalityOfRegistration": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "pollingStationCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "registrationCenterCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "sectionCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "stateCode": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "stateName": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "driverLicenseDetailedInfo": {
    "restrictions": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "endorsements": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleClass": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "conditions": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    },
    "vehicleClassesInfo": [
      {
        "vehicleClass": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "licenceType": {
          "latin": "string",
          "latinLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "cyrillic": "string",
          "cyrillicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "arabic": "string",
          "arabicLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          },
          "greek": "string",
          "greekLocation": {
            "topLeftCorner": {
              "x": 0.1,
              "y": 0.1
            },
            "dimensions": {
              "width": 0.1,
              "height": 0.1
            },
            "side": "FIRST"
          }
        },
        "effectiveDate": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        },
        "expiryDate": {
          "day": 0,
          "month": 0,
          "year": 0,
          "successfullyParsed": true,
          "filledByDomainKnowledge": true,
          "originalString": {
            "latin": "string",
            "latinLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "cyrillic": "string",
            "cyrillicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "arabic": "string",
            "arabicLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            },
            "greek": "string",
            "greekLocation": {
              "topLeftCorner": {
                "x": 0.1,
                "y": 0.1
              },
              "dimensions": {
                "width": 0.1,
                "height": 0.1
              },
              "side": "FIRST"
            }
          }
        }
      }
    ]
  },
  "bloodType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "sponsor": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "visaType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  }
}

The data extracted from the visual inspection zone.

Properties

Name Type Required Restrictions Description
firstName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The first name of the document owner.

continued

Name Type Required Restrictions Description
lastName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The last name of the document owner.

continued

Name Type Required Restrictions Description
fullName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The full name of the document owner.

continued

Name Type Required Restrictions Description
documentSubtype any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The transcription of the document subtype.

continued

Name Type Required Restrictions Description
remarks any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The remarks on the residence permit.

continued

Name Type Required Restrictions Description
residencePermitType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The residence permit type.

continued

Name Type Required Restrictions Description
manufacturingYear any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The manufacturing year.

continued

Name Type Required Restrictions Description
vehicleType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The vehicle type.

continued

Name Type Required Restrictions Description
eligibilityCategory any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The eligibility category.

continued

Name Type Required Restrictions Description
specificDocumentValidity any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The specific document validity.

continued

Name Type Required Restrictions Description
dependentsInfo [DependentInfo]¦null false none [ The dependents info.]
vehicleOwner any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The vehicle owner.

continued

Name Type Required Restrictions Description
certificateNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The vehicle owner.

continued

Name Type Required Restrictions Description
countryCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The certificate number of the document owner.

continued

Name Type Required Restrictions Description
nationalInsuranceNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The country code of the document owner.

continued

Name Type Required Restrictions Description
additionalNameInformation any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional name information number of the document owner.

continued

Name Type Required Restrictions Description
localizedName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The localized name of the document.

continued

Name Type Required Restrictions Description
address any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The address of the document owner.

continued

Name Type Required Restrictions Description
additionalAddressInformation any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional address information of the document owner.

continued

Name Type Required Restrictions Description
additionalOptionalAddressInformation any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The one more additional address information of the document owner.

continued

Name Type Required Restrictions Description
placeOfBirth any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The place of birth of the document owner.

continued

Name Type Required Restrictions Description
nationality any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The nationality of the documet owner.

continued

Name Type Required Restrictions Description
race any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The race of the document owner.

continued

Name Type Required Restrictions Description
religion any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The religion of the document owner.

continued

Name Type Required Restrictions Description
profession any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The profession of the document owner.

continued

Name Type Required Restrictions Description
maritalStatus any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The marital status of the document owner.

continued

Name Type Required Restrictions Description
residentialStatus any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The residential stauts of the document owner.

continued

Name Type Required Restrictions Description
employer any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The employer of the document owner.

continued

Name Type Required Restrictions Description
sex any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The sex of the document owner.

continued

Name Type Required Restrictions Description
dateOfBirth DateResult¦null false none none
dateOfIssue DateResult¦null false none none
dateOfExpiry DateResult¦null false none none
dateOfExpiryPermanent boolean¦null false none Determines if date of expiry is permanent.
documentNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The document number.

continued

Name Type Required Restrictions Description
personalIdNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The personal identification number.

continued

Name Type Required Restrictions Description
documentAdditionalNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional number of the document.

continued

Name Type Required Restrictions Description
additionalPersonalIdNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The additional personal identification number.

continued

Name Type Required Restrictions Description
documentOptionalAdditionalNumber any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The one more additional number of the document.

continued

Name Type Required Restrictions Description
issuingAuthority any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The issuing authority of the document.

continued

Name Type Required Restrictions Description
fathersName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The fathers name of the document owner.

continued

Name Type Required Restrictions Description
mothersName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The mothers name of the document owner.

continued

Name Type Required Restrictions Description
dateOfEntry any false none none

allOf

Name Type Required Restrictions Description
» anonymous DateResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The date of entry.

continued

Name Type Required Restrictions Description
localityCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The locality code.

continued

Name Type Required Restrictions Description
maidenName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The maiden name of the document owner.

continued

Name Type Required Restrictions Description
municipalityCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The municipality code.

continued

Name Type Required Restrictions Description
municipalityOfRegistration any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The municipality of registration.

continued

Name Type Required Restrictions Description
pollingStationCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The polling station code.

continued

Name Type Required Restrictions Description
registrationCenterCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The registration center code.

continued

Name Type Required Restrictions Description
sectionCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The section code.

continued

Name Type Required Restrictions Description
stateCode any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The state code.

continued

Name Type Required Restrictions Description
stateName any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The state name.

continued

Name Type Required Restrictions Description
driverLicenseDetailedInfo DriverLicenseDetailedInfo¦null false none The driver license detailed info.
bloodType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The blood type of the document owner.

continued

Name Type Required Restrictions Description
sponsor any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The sponsor of the document owner.

continued

Name Type Required Restrictions Description
visaType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none Visa type of the document.

VehicleClassInfo

{
  "vehicleClass": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "licenceType": {
    "latin": "string",
    "latinLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "cyrillic": "string",
    "cyrillicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "arabic": "string",
    "arabicLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    },
    "greek": "string",
    "greekLocation": {
      "topLeftCorner": {
        "x": 0.1,
        "y": 0.1
      },
      "dimensions": {
        "width": 0.1,
        "height": 0.1
      },
      "side": "FIRST"
    }
  },
  "effectiveDate": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  },
  "expiryDate": {
    "day": 0,
    "month": 0,
    "year": 0,
    "successfullyParsed": true,
    "filledByDomainKnowledge": true,
    "originalString": {
      "latin": "string",
      "latinLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "cyrillic": "string",
      "cyrillicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "arabic": "string",
      "arabicLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      },
      "greek": "string",
      "greekLocation": {
        "topLeftCorner": {
          "x": 0.1,
          "y": 0.1
        },
        "dimensions": {
          "width": 0.1,
          "height": 0.1
        },
        "side": "FIRST"
      }
    }
  }
}

The additional information on vehicle class.

Properties

Name Type Required Restrictions Description
vehicleClass any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The type of vehicle the driver license owner has privilege to drive.

continued

Name Type Required Restrictions Description
licenceType any false none none

allOf

Name Type Required Restrictions Description
» anonymous StringResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The type of driver licence.

continued

Name Type Required Restrictions Description
effectiveDate any false none none

allOf

Name Type Required Restrictions Description
» anonymous DateResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The date since licence is effective

continued

Name Type Required Restrictions Description
expiryDate any false none none

allOf

Name Type Required Restrictions Description
» anonymous DateResult false none none

and

Name Type Required Restrictions Description
» anonymous any false none The date of expiry of licence.

Release Notes

Release notes are now here.