Interpreting Your JSON Results
Introduction
This document serves as a guide to understanding the JSON model results files generated by the Indico Agents and Workflows platform.
The contents of the result file you see depend on several factors:
- The type of model
- The default output version for your cluster
- Whether optional functionalities are enabled, such as:
- Review
- Typed Answer Keys (TAK)
- Linked Labels
- Summarization
Output Overview
- Classification models, including Classify and Unbundle models, output predicted classes with confidence scores.
- Extraction models : output extracted text with confidence levels for each prediction.
- Linked-Label transformers: group linked labels using an index in the output dictionary.
- Form models: output includes keys like
recognized_formsandform_versionto identify processed forms. - Review or Autoreview: indicate the review status of model outputs.
- Object Detection
- Summarization: output varies between result-file versions:
- For version 1, results mirror single classification output results and contain summary text with citations.
- For version 3, the output contains an array for each unbundled file in the submission.
Each file also features links to ETL (Extract, Transform, Load) and OCR (Optical Character Recognition) outputs, which offer detailed information about each page within a submission. To understanding ETL and OCR output, read our Interpreting your OCR and ETL Output document.
In addition to model type, Typed Answer Keys/Output Normalization also impacts your output. It adds a formatted or normalized key for field normalization.
The
spansKeyModels like Extraction and Classify and Unbundle return labels containing a
spanskey, which represents semantically related text segments from the source document. Thectx_idfield, if provided, tracks the parent span to organize related data through a workflow. If noctx_idis provided, the model ran on the entire document.
Understanding Your JSON Results
This guide will walk you through the structure of each of these results files, explain the significance of each element, and provide practical examples to help you effectively utilize this data in your applications.
Output File Hierarchy
There are three levels of result files that you get from a workflow:
- Top-level result file that typically has the following name structure
submission_<submission id>_result.json. - Mid-level result file named
etl_output.jsonprovides links to the full text of the submission and the low-level result files that contain the detailed results of the workflow. - Low-level detailed OCR result files:
page_info_<index>.jsonprovides detailed OCR data for the page identified by the index in the file name.- JSON files that provide granular OCR data on characters, tokens, and blocks.
To learn about the mid- and low-lever output file contents, read Interpreting Your OCR and ETL Output.
File Versions
Indico currently offers two versions of results files, version 1 and version 3. The formats have slight variations.
The file version you are using is accessible in the first line of the JSON output file.
{
"file_version": 3,
...
}It is a best practice to use version 3 whenever possible. Indico is sunsetting version 1. It is currently being supported for backward compatibility only.
Classification
For classification results of all varieties tested under the name of the model group, there is a dictionary of the class name and confidence level of the prediction. Confidence levels are between 0 and 1.
Single Classification
For single classification, results are present for every model group as keys in the results dictionary.
{
"file_version": 1,
"submission_id": "12345",
"etl_output": "indico-file:///storage/submission/ocr_output.json",
"results": {
"document": {
"results": {
"Test Model 1": {
"Class 1": 0.688137223450789,
"Class 2": 0.08451932419717022,
"Class 3": 0.06304424768016251,
"Class 4": 0.021362314937542252
}
}
}
}
}{
"file_version": 3,
"submission_id": 97351,
"modelgroup_metadata": {
"5963": {
"id": 5963,
"task_type": "classification",
"name": "classify_docs_forms_emails",
"selected_model": {
"id": 9852,
"model_type": "tfidf_gbt"
}
},
"5964": {
"id": 5964,
"task_type": "annotation",
"name": "email_agent",
"selected_model": {
"id": 9855,
"model_type": "finetune"
}
},
"5965": {
"id": 5965,
"task_type": "annotation",
"name": "form_extract",
"selected_model": {
"id": 9857,
"model_type": "finetune"
}
}
},
"component_metadata": {
"19257": {
"id": 19257,
"name": null,
"component_type": "input_ocr_extraction",
"task_type": null
},
"19258": {
"id": 19258,
"name": null,
"component_type": "output_json_formatter",
"task_type": null
},
"19259": {
"id": 19259,
"name": "Standard Output",
"component_type": "default_output",
"task_type": null
},
"19260": {
"id": 19260,
"name": "Document Classification",
"component_type": "model_group",
"task_type": "classification"
},
"19261": {
"id": 19261,
"name": "Agent Link",
"component_type": "link_classification_model",
"task_type": "classification"
},
"19262": {
"id": 19262,
"name": "Document Extraction",
"component_type": "model_group",
"task_type": "annotation"
},
"19263": {
"id": 19263,
"name": "Review",
"component_type": "review",
"task_type": null
},
"19264": {
"id": 19264,
"name": "Document Extraction",
"component_type": "model_group",
"task_type": "annotation"
}
},
"submission_results": [
{
"submissionfile_id": 93643,
"etl_output": "indico-file:///storage/submission/5530/97351/93643/etl_output.json",
"input_filename": "GlenbrookHospitalityGroup.eml",
"input_filepath": "indico-file:///storage/submission/5530/97351/93643.eml",
"input_filesize": 752098,
"model_results": {
"ORIGINAL": {
"5964": [
{
"label": "email_date",
"spans": [
{
"start": 71,
"end": 80,
"page_num": 0
}
],
"span_id": "93643:c:19262:idx:0",
"confidence": {
"MSAddress": 0.00005312422217684798,
"email_date": 0.9356335997581482,
"email_from": 0.000023834867533878424,
"email_subject": 0.0000030208063890313498,
"email_to": 0.000005936453362664906
},
"field_id": 857964,
"location_type": "exact",
"text": "6/24/2023",
"normalized": {
"text": "6/24/2023",
"start": 71,
"end": 80,
"structured": null,
"formatted": "6/24/2023",
"status": "WARNING",
"comparison_type": "string",
"comparison_value": "6/24/2023",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
},
{
"validation_type": "MIN_CONFIDENCE",
"error_message": "Confidence value is below minimum of 0.999999",
"validation_status": "WARNING"
}
]
}
},
{
"label": "email_from",
"spans": [
{
"start": 147,
"end": 150,
"page_num": 0
}
],
"span_id": "93643:c:19262:idx:1",
"confidence": {
"MSAddress": 0.0002783602976705879,
"email_date": 3.915139927812561e-7,
"email_from": 0.8135819435119629,
"email_subject": 0.0000029474567782017404,
"email_to": 0.005243304651230574
},
"field_id": 857963,
"location_type": "exact",
"text": "Son",
"normalized": {
"text": "Son",
"start": 147,
"end": 150,
"structured": null,
"formatted": "Son",
"status": "WARNING",
"comparison_type": "string",
"comparison_value": "Son",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
},
{
"validation_type": "MIN_CONFIDENCE",
"error_message": "Confidence value is below minimum of 0.999999",
"validation_status": "WARNING"
}
]
}
},
{
"label": "email_date",
"spans": [
{
"start": 186,
"end": 202,
"page_num": 0
}
],
"span_id": "93643:c:19262:idx:2",
"confidence": {
"MSAddress": 2.7453074480376928e-8,
"email_date": 0.9999993443489075,
"email_from": 2.7516144029959834e-8,
"email_subject": 8.470322221398874e-9,
"email_to": 1.5203445613565237e-8
},
"field_id": 857964,
"location_type": "exact",
"text": "Fri, 24 Feb 2023",
"normalized": {
"text": "Fri, 24 Feb 2023",
"start": 186,
"end": 202,
"structured": null,
"formatted": "Fri, 24 Feb 2023",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "Fri, 24 Feb 2023",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
},
{
"validation_type": "MIN_CONFIDENCE",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "email_date",
"spans": [
{
"start": 744,
"end": 748,
"page_num": 1
}
],
"span_id": "93643:c:19262:idx:3",
"confidence": {
"MSAddress": 0.00008587438060203567,
"email_date": 0.9474868178367615,
"email_from": 0.00003401423236937262,
"email_subject": 2.682314743651659e-7,
"email_to": 0.000004527433247858426
},
"field_id": 857964,
"location_type": "exact",
"text": "/01/",
"normalized": {
"text": "/01/",
"start": 744,
"end": 748,
"structured": null,
"formatted": "/01/",
"status": "WARNING",
"comparison_type": "string",
"comparison_value": "/01/",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
},
{
"validation_type": "MIN_CONFIDENCE",
"error_message": "Confidence value is below minimum of 0.999999",
"validation_status": "WARNING"
}
]
}
},
{
"label": "email_date",
"spans": [
{
"start": 757,
"end": 763,
"page_num": 1
}
],
"span_id": "93643:c:19262:idx:4",
"confidence": {
"MSAddress": 0.000060868278524139899,
"email_date": 0.945084810256958,
"email_from": 0.00003249396468163468,
"email_subject": 3.6455074337027329e-7,
"email_to": 0.000004495771008805605
},
"field_id": 857964,
"location_type": "exact",
"text": "03/17/",
"normalized": {
"text": "03/17/",
"start": 757,
"end": 763,
"structured": null,
"formatted": "03/17/",
"status": "WARNING",
"comparison_type": "string",
"comparison_value": "03/17/",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
},
{
"validation_type": "MIN_CONFIDENCE",
"error_message": "Confidence value is below minimum of 0.999999",
"validation_status": "WARNING"
}
]
}
},
{
"label": "email_date",
"spans": [
{
"start": 8494,
"end": 8511,
"page_num": 5
}
],
"span_id": "93643:c:19262:idx:5",
"confidence": {
"MSAddress": 0.0000015813617437743233,
"email_date": 0.9995347261428833,
"email_from": 0.000004186162641417468,
"email_subject": 2.14101305573422e-7,
"email_to": 0.0000010607820968289162
},
"field_id": 857964,
"location_type": "exact",
"text": "February 24, 2023",
"normalized": {
"text": "February 24, 2023",
"start": 8494,
"end": 8511,
"structured": null,
"formatted": "February 24, 2023",
"status": "WARNING",
"comparison_type": "string",
"comparison_value": "February 24, 2023",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
},
{
"validation_type": "MIN_CONFIDENCE",
"error_message": "Confidence value is below minimum of 0.999999",
"validation_status": "WARNING"
}
]
}
},
{
"label": "email_date",
"spans": [
{
"start": 9608,
"end": 9633,
"page_num": 5
}
],
"span_id": "93643:c:19262:idx:6",
"confidence": {
"MSAddress": 1.945169429973248e-7,
"email_date": 0.9999340772628784,
"email_from": 6.789780968574632e-7,
"email_subject": 6.638894944899221e-8,
"email_to": 2.0531339828266938e-7
},
"field_id": 857964,
"location_type": "exact",
"text": "Friday, February 24, 2023",
"normalized": {
"text": "Friday, February 24, 2023",
"start": 9608,
"end": 9633,
"structured": null,
"formatted": "Friday, February 24, 2023",
"status": "WARNING",
"comparison_type": "string",
"comparison_value": "Friday, February 24, 2023",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
},
{
"validation_type": "MIN_CONFIDENCE",
"error_message": "Confidence value is below minimum of 0.999999",
"validation_status": "WARNING"
}
]
}
},
{
"label": "email_date",
"spans": [
{
"start": 9820,
"end": 9826,
"page_num": 5
}
],
"span_id": "93643:c:19262:idx:7",
"confidence": {
"MSAddress": 0.00008293025894090533,
"email_date": 0.8890893459320068,
"email_from": 0.00003871482113027014,
"email_subject": 0.0000015124880974326516,
"email_to": 0.000005117231467011152
},
"field_id": 857964,
"location_type": "exact",
"text": "/24/20",
"normalized": {
"text": "/24/20",
"start": 9820,
"end": 9826,
"structured": null,
"formatted": "/24/20",
"status": "WARNING",
"comparison_type": "string",
"comparison_value": "/24/20",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
},
{
"validation_type": "MIN_CONFIDENCE",
"error_message": "Confidence value is below minimum of 0.999999",
"validation_status": "WARNING"
}
]
}
}
],
"5963": [
{
"field_id": 857962,
"confidence": {
"email": 0.9999709807607293,
"doc": 0.000021706405164815997,
"form": 0.00000731283410581234
},
"label": "email"
}
]
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"5964": [],
"5963": []
},
"components": {}
}
}
],
"reviews": {},
"errored_files": {}
}Multi Classification
For multi-classification, class name and confidence are present for every class in the model.
{
"file_version": 3,
"submission_id": 97350,
"modelgroup_metadata": {
"4221": {
"id": 4221,
"task_type": "classification_multiple",
"name": "multi_classify",
"selected_model": {
"id": 6766,
"model_type": "tfidf_gbt"
}
},
"4227": {
"id": 4227,
"task_type": "annotation",
"name": "extraction document type 1",
"selected_model": {
"id": 6767,
"model_type": "finetune"
}
},
"4229": {
"id": 4229,
"task_type": "annotation",
"name": "extraction document type 2",
"selected_model": {
"id": 6770,
"model_type": "finetune"
}
}
},
"component_metadata": {
"14734": {
"id": 14734,
"name": null,
"component_type": "input_ocr_extraction",
"task_type": null
},
"14735": {
"id": 14735,
"name": null,
"component_type": "output_json_formatter",
"task_type": null
},
"14737": {
"id": 14737,
"name": "Document Multi-Classification",
"component_type": "model_group",
"task_type": "classification_multiple"
},
"14745": {
"id": 14745,
"name": "Standard Output",
"component_type": "default_output",
"task_type": null
},
"14746": {
"id": 14746,
"name": "Model Link",
"component_type": "link_classification_model",
"task_type": "classification_multiple"
},
"14747": {
"id": 14747,
"name": "Document Extraction",
"component_type": "model_group",
"task_type": "annotation"
},
"14748": {
"id": 14748,
"name": "Review",
"component_type": "review",
"task_type": null
},
"14750": {
"id": 14750,
"name": "Document Extraction",
"component_type": "model_group",
"task_type": "annotation"
}
},
"submission_results": [
{
"submissionfile_id": 93642,
"etl_output": "indico-file:///storage/submission/4008/97350/93642/etl_output.json",
"input_filename": "leadership.pdf",
"input_filepath": "indico-file:///storage/submission/4008/97350/93642.pdf",
"input_filesize": 15248,
"model_results": {
"ORIGINAL": {
"4221": [
{
"field_ids": [
267290,
267290,
267290
],
"confidence": {
"problem": 0.9999999961727768,
"leadership": 0.9999999922852744,
"tech": 0.6666662614633455,
"earnings": 0.3333331376906894,
"other": 2.872262090213859e-8,
"acquisition": 2.3355426017253765e-9,
"energy": 9.715453333083489e-10,
"financial": 4.161086406129549e-10,
"foodretail": 4.353135264147288e-11,
"product": 2.2489297185618299e-11,
"auto": 2.2232509679333238e-11,
"pharmaceutical": 1.824398818834385e-14
},
"label": [
"problem",
"leadership",
"tech"
]
}
],
"4227": [
{
"label": "org",
"spans": [
{
"start": 4,
"end": 8,
"page_num": 0
}
],
"span_id": "93642:c:14747:idx:0",
"confidence": {
"org": 0.9999672174453735
},
"field_id": 267292,
"location_type": "exact",
"text": "Sony",
"normalized": {
"text": "Sony",
"start": 4,
"end": 8,
"structured": null,
"formatted": "Sony",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "Sony",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
}
]
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"4221": [],
"4227": []
},
"components": {}
}
}
],
"reviews": {},
"errored_files": {}
}Classify and Unbundle
{
"file_version": 1,
"submission_id": 191111,
"etl_output": "indico-file:///storage/submission/13733/19302/11111/etl_output.json",
"results": {
"document": {
"results": {
"classify and unbundle invoices": [],
"class filter for invoices": {
"field_id": 6866379,
"confidence": {
"Invoices": 0.999618701653154,
"Receipts": 0.0003806857502734332,
"Other": 6.125965725590266e-7
},
"label": "Other"
}
},
"rejected": {
"classify and unbundle invoices": [],
"class filter for invoices": []
}
}
}
}{
"file_version": 3,
"submission_id": 97349,
"modelgroup_metadata": {
"5207": {
"id": 5207,
"task_type": "classification_unbundling",
"name": "classify_unbundle_readapiv2_no_unpack",
"selected_model": {
"id": 8302,
"model_type": "unbundle"
}
},
"5208": {
"id": 5208,
"task_type": "annotation",
"name": "avg_report_extract",
"selected_model": {
"id": 8304,
"model_type": "finetune"
}
},
"5209": {
"id": 5209,
"task_type": "annotation",
"name": "financial_disclosure_report_name",
"selected_model": {
"id": 8306,
"model_type": "finetune"
}
},
"5210": {
"id": 5210,
"task_type": "annotation",
"name": "report_extraction",
"selected_model": {
"id": 8308,
"model_type": "finetune"
}
}
},
"component_metadata": {
"16999": {
"id": 16999,
"name": null,
"component_type": "input_ocr_extraction",
"task_type": null
},
"17000": {
"id": 17000,
"name": null,
"component_type": "output_json_formatter",
"task_type": null
},
"17001": {
"id": 17001,
"name": "Standard Output",
"component_type": "default_output",
"task_type": null
},
"17002": {
"id": 17002,
"name": "Classify & Unbundle",
"component_type": "model_group",
"task_type": "classification_unbundling"
},
"17003": {
"id": 17003,
"name": "Model Link",
"component_type": "link_classification_model",
"task_type": "classification_unbundling"
},
"17004": {
"id": 17004,
"name": "Document Extraction",
"component_type": "model_group",
"task_type": "annotation"
},
"17005": {
"id": 17005,
"name": "Review",
"component_type": "review",
"task_type": null
},
"17006": {
"id": 17006,
"name": "Document Extraction",
"component_type": "model_group",
"task_type": "annotation"
},
"17007": {
"id": 17007,
"name": "Document Extraction",
"component_type": "model_group",
"task_type": "annotation"
}
},
"submission_results": [
{
"submissionfile_id": 93641,
"etl_output": "indico-file:///storage/submission/4903/97349/93641/etl_output.json",
"input_filename": "bundled_doc-1.pdf",
"input_filepath": "indico-file:///storage/submission/4903/97349/93641.pdf",
"input_filesize": 361241,
"model_results": {
"ORIGINAL": {
"5208": [
{
"label": "avg_logo",
"spans": [
{
"start": 32802,
"end": 32805,
"page_num": 19
}
],
"span_id": "93641:c:17004:idx:0",
"confidence": {
"avg_logo": 0.9999994039535523
},
"ctx_id": "93641:c:17002:idx:2",
"field_id": 429948,
"location_type": "exact",
"text": "AVG",
"normalized": {
"text": "AVG",
"start": 32802,
"end": 32805,
"structured": null,
"formatted": "AVG",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "AVG",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
}
],
"5210": [
{
"label": "company_name",
"spans": [
{
"start": 0,
"end": 33,
"page_num": 0
}
],
"span_id": "93641:c:17007:idx:0",
"confidence": {
"company_name": 0.9999999403953552
},
"ctx_id": "93641:c:17002:idx:0",
"field_id": 429950,
"location_type": "exact",
"text": "NORTHEAST\nCOMMUNITY BANCORP, INC.",
"normalized": {
"text": "NORTHEAST\nCOMMUNITY BANCORP, INC.",
"start": 0,
"end": 33,
"structured": null,
"formatted": "NORTHEAST\nCOMMUNITY BANCORP, INC.",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "NORTHEAST\nCOMMUNITY BANCORP, INC.",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
}
],
"5209": [
{
"label": "report_name",
"spans": [
{
"start": 2584,
"end": 2661,
"page_num": 2
}
],
"span_id": "93641:c:17006:idx:0",
"confidence": {
"report_name": 1.0
},
"ctx_id": "93641:c:17002:idx:1",
"field_id": 429949,
"location_type": "exact",
"text": "Executive Branch Personnel\nPublic Financial Disclosure Report (OGE Form 278e)",
"normalized": {
"text": "Executive Branch Personnel\nPublic Financial Disclosure Report (OGE Form 278e)",
"start": 2584,
"end": 2661,
"structured": null,
"formatted": "Executive Branch Personnel\nPublic Financial Disclosure Report (OGE Form 278e)",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "Executive Branch Personnel\nPublic Financial Disclosure Report (OGE Form 278e)",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
}
],
"5207": [
{
"label": "annual report",
"spans": [
{
"start": 0,
"end": 2426,
"page_num": 0
},
{
"start": 2427,
"end": 2463,
"page_num": 1
}
],
"span_id": "93641:c:17002:idx:0",
"confidence": {
"annual report": 0.9949126243591309,
"avg annual report": 0.002969800028949976,
"financial disclosures": 0.002117517637088895
},
"field_id": 429947,
"location_type": "exact"
},
{
"label": "financial disclosures",
"spans": [
{
"start": 2464,
"end": 3659,
"page_num": 2
},
{
"start": 3660,
"end": 5017,
"page_num": 3
},
{
"start": 5018,
"end": 6477,
"page_num": 4
},
{
"start": 6478,
"end": 8038,
"page_num": 5
},
{
"start": 8039,
"end": 9392,
"page_num": 6
},
{
"start": 9393,
"end": 10802,
"page_num": 7
},
{
"start": 10803,
"end": 11939,
"page_num": 8
},
{
"start": 11940,
"end": 13167,
"page_num": 9
},
{
"start": 13168,
"end": 14544,
"page_num": 10
},
{
"start": 14545,
"end": 15919,
"page_num": 11
},
{
"start": 15920,
"end": 17441,
"page_num": 12
},
{
"start": 17442,
"end": 18723,
"page_num": 13
},
{
"start": 18724,
"end": 19341,
"page_num": 14
},
{
"start": 19342,
"end": 22187,
"page_num": 15
},
{
"start": 22188,
"end": 25429,
"page_num": 16
},
{
"start": 25430,
"end": 27204,
"page_num": 17
},
{
"start": 27205,
"end": 30796,
"page_num": 18
}
],
"span_id": "93641:c:17002:idx:1",
"confidence": {
"annual report": 0.0030741794034838678,
"avg annual report": 0.0038796598091721536,
"financial disclosures": 0.9930461049079895
},
"field_id": 429947,
"location_type": "exact"
},
{
"label": "avg annual report",
"spans": [
{
"start": 30797,
"end": 32809,
"page_num": 19
},
{
"start": 32810,
"end": 36737,
"page_num": 20
}
],
"span_id": "93641:c:17002:idx:2",
"confidence": {
"annual report": 0.003948610741645098,
"avg annual report": 0.9928027987480164,
"financial disclosures": 0.003248531138524413
},
"field_id": 429947,
"location_type": "exact"
}
]
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"5208": [],
"5210": [],
"5209": [],
"5207": []
},
"components": {}
}
}
],
"reviews": {},
"errored_files": {}
}Extraction
For extraction results, each extracted text (identified by character start and end indexes and text) displays the confidence score (under the confidence nesting) for each of the classes in the model. The class with the highest confidence is identified as the label (under the label key). Confidence levels are between 0 and 1. You may notice <PAD> in list of labels. <PAD> indicates the absence of a label.
{
"submission_id": 91,
"etl_output": "indico-file:///storage/submission/ocr_output.json",
"errors": [],
"results": {
"document": {
"results": {
"Invoices Extraction": [
{
"start": 115,
"end": 126,
"label": "Invoice Number",
"text": "10000023222",
"confidence": {
"Line Item": 4.491627958458366e-9,
"Total": 1.0310143494507429e-7,
"Vendor": 3.994096786641421e-8,
"<PAD>": 3.4748592270261724e-7,
"Invoice Number": 0.9999995231628418,
"Line Item Value": 1.2659886472476956e-8
}
},
{
"start": 978,
"end": 1004,
"label": "Vendor",
"text": "Intrado Digital Media, LLC",
"confidence": {
"Line Item": 2.7375634203963273e-8,
"Total": 1.2861304909961291e-8,
"Vendor": 1,
"<PAD>": 1.0245797099628362e-8,
"Invoice Number": 3.3023983547764146e-8,
"Line Item Value": 4.132349928909207e-8
}
},
{
"start": 1960,
"end": 2069,
"label": "Line Item",
"text": "Indico CEO Tom Wilde to Present at Intelligent Automation for Banking, Financial Services and Insurance Event",
"confidence": {
"Line Item": 0.9999918937683105,
"Total": 7.112359412531077e-8,
"Vendor": 0.0000023915347355796257,
"<PAD>": 0.000003880942585965386,
"Invoice Number": 1.288364899210137e-7,
"Line Item Value": 0.0000016712019714759663
}
},
]
}
}
}
}{
"file_version": 3,
"submission_id": 39855,
"modelgroup_metadata": {
"18584": {
"id": 18584,
"task_type": "annotation",
"name": "model1",
"selected_model": {
"id": 23032,
"model_type": "finetune"
}
},
"18585": {
"id": 18585,
"task_type": "annotation",
"name": "extract2",
"selected_model": {
"id": 23033,
"model_type": "finetune"
}
}
},
"component_metadata": {
"82564": {
"id": 82564,
"name": null,
"component_type": "input_ocr_extraction"
},
"82565": {
"id": 82565,
"name": null,
"component_type": "output_json_formatter"
},
"82567": {
"id": 82567,
"name": "Document Extraction",
"component_type": "model_group"
},
"82569": {
"id": 82569,
"name": "Document Extraction",
"component_type": "model_group"
},
"84000": {
"id": 84000,
"name": "Date and Price Group",
"component_type": "link_label"
},
"91655": {
"id": 91655,
"name": "Standard Output",
"component_type": "default_output"
}
},
"submission_results": [
{
"submissionfile_id": 58851,
"etl_output": "indico-file:///storage/submission/20869/39855/58851/etl_output.json",
"input_filename": "Atlantic-Development-Group-Umbrella_XS-Submission-Eff-1_31_23-24.txt",
"input_filepath": "indico-file:///storage/submission/20869/39855/58851.txt",
"input_filesize": 2919,
"model_results": {
"ORIGINAL": {
"18584": [
{
"label": "person_name",
"spans": [
{
"start": 80,
"end": 98,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:1",
"confidence": {
"address": 0.0017796654719859362,
"category": 0.00037611479638144374,
"date": 0.0002551926299929619,
"email": 0.1306380033493042,
"person_name": 0.8642205595970154,
"phone": 0.00008364625682588667,
"price": 0.00075566116720438,
"unformatted_summary": 0.0008147378102876246,
"unformatted_text": 0.0003376395034138113
},
"field_id": 7995219,
"location_type": "exact",
"text": "Christian Catapano",
"groupings": [],
"normalized": {
"text": "Christian Catapano",
"start": 80,
"end": 98,
"structured": null,
"formatted": "Christian Catapano",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "Christian Catapano",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "email",
"spans": [
{
"start": 302,
"end": 303,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:6",
"confidence": {
"address": 0.00007140234083635733,
"category": 0.0005508946487680078,
"date": 0.00004518983405432664,
"email": 0.9167560935020447,
"person_name": 0.0001995695347432047,
"phone": 0.000034890170354628935,
"price": 0.00008875865751178935,
"unformatted_summary": 0.07849836349487305,
"unformatted_text": 0.00359711074270308
},
"field_id": 7995218,
"location_type": "exact",
"text": ".",
"groupings": [],
"normalized": {
"text": ".",
"start": 302,
"end": 303,
"structured": null,
"formatted": ".",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": ".",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "address",
"spans": [
{
"start": 1999,
"end": 2001,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:49",
"confidence": {
"address": 0.19631226360797882,
"category": 0.000982333323918283,
"date": 0.049195919185876846,
"email": 0.03619849309325218,
"person_name": 0.12139375507831573,
"phone": 0.01585938036441803,
"price": 0.12346545606851578,
"unformatted_summary": 0.06210317835211754,
"unformatted_text": 0.010661953128874302
},
"field_id": 7995220,
"location_type": "exact",
"text": "LC",
"groupings": [],
"normalized": {
"text": "LC",
"start": 1999,
"end": 2001,
"structured": null,
"formatted": "LC",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "LC",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
}
],
"18585": [
{
"label": "person_name",
"spans": [
{
"start": 80,
"end": 98,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:1",
"confidence": {
"address": 0.00026037852512672544,
"category": 0.00017033630865626037,
"date": 0.000059458412579260767,
"email": 0.026167921721935272,
"person_name": 0.9725133180618286,
"phone": 8.688167326909024e-6,
"price": 0.00016771687660366297,
"unformatted_summary": 0.00011342407378833741,
"unformatted_text": 0.00006343727727653459
},
"field_id": 7995219,
"location_type": "exact",
"text": "Christian Catapano",
"normalized": {
"text": "Christian Catapano",
"start": 80,
"end": 98,
"structured": null,
"formatted": "Christian Catapano",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "Christian Catapano",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "date",
"spans": [
{
"start": 197,
"end": 211,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:3",
"confidence": {
"address": 0.00010872285201912746,
"category": 0.00029450972215272486,
"date": 0.9955880641937256,
"email": 0.00003455602563917637,
"person_name": 4.3423160605016164e-6,
"phone": 7.924973033368587e-6,
"price": 0.00004500727663980797,
"unformatted_summary": 0.0001772578398231417,
"unformatted_text": 0.000016229927496169694
},
"field_id": null,
"location_type": "exact",
"text": "Eff 1/31/23-24"
},
{
"label": "date",
"spans": [
{
"start": 218,
"end": 249,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:4",
"confidence": {
"address": 0.0006654513999819756,
"category": 0.0001157194419647567,
"date": 0.9894330501556396,
"email": 0.0016609043814241886,
"person_name": 0.00018578454910311848,
"phone": 0.00008319313928950578,
"price": 0.003678185399621725,
"unformatted_summary": 0.0009489056537859142,
"unformatted_text": 0.00006360911356750876
},
"field_id": null,
"location_type": "exact",
"text": "Wed, 18 Jan 2023 15:41:35 +0000"
},
{
"label": "date",
"spans": [
{
"start": 487,
"end": 516,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:8",
"confidence": {
"address": 0.004726300481706858,
"category": 0.0007444208604283631,
"date": 0.9442811012268066,
"email": 0.004345965106040239,
"person_name": 0.0006758485687896609,
"phone": 0.00012927698844578117,
"price": 0.003121555084362626,
"unformatted_summary": 0.01817636750638485,
"unformatted_text": 0.0010830903192982078
},
"field_id": null,
"location_type": "exact",
"text": "effective 1/31/2023-1/31/2024"
},
{
"label": "date",
"spans": [
{
"start": 809,
"end": 831,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:15",
"confidence": {
"address": 0.0033202653285115957,
"category": 0.00023084803251549602,
"date": 0.9697551131248474,
"email": 0.002186252037063241,
"person_name": 0.0004368240188341588,
"phone": 0.00006507634680019692,
"price": 0.0006301410030573606,
"unformatted_summary": 0.0027232228312641382,
"unformatted_text": 0.00009670868166722357
},
"field_id": null,
"location_type": "exact",
"text": "1/31/2023 to 1/31/2024"
},
{
"label": "email",
"spans": [
{
"start": 1589,
"end": 1623,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:25",
"confidence": {
"address": 0.00011318989709252492,
"category": 1.4124228755463264e-6,
"date": 3.6116559840593254e-6,
"email": 0.9993488788604736,
"person_name": 0.0003713900223374367,
"phone": 3.630160790635273e-6,
"price": 0.00005808874266222119,
"unformatted_summary": 0.000011236006685066968,
"unformatted_text": 6.952333933440968e-6
},
"field_id": 7995218,
"location_type": "exact",
"text": "[email protected]",
"normalized": {
"text": "[email protected]",
"start": 1589,
"end": 1623,
"structured": null,
"formatted": "[email protected]",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "[email protected]",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
}
]
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"18584": [
{
"label": "email",
"spans": [
{
"start": 4,
"end": 73,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:0",
"confidence": {
"address": 0.0001422955101588741,
"category": 0.00004625660221790895,
"date": 0.00002712739478738513,
"email": 0.995801568031311,
"person_name": 0.0005087707540951669,
"phone": 0.000011167575394210871,
"price": 0.00023257092107087374,
"unformatted_summary": 0.0017664311453700066,
"unformatted_text": 0.00026696716668084264
},
"field_id": 7995218,
"location_type": "exact",
"text": "\"[email protected]\" <[email protected]>",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 99,
"end": 135,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:2",
"confidence": {
"address": 0.0010868845274671912,
"category": 0.00009394776134286076,
"date": 0.00012215484457556158,
"email": 0.9849878549575806,
"person_name": 0.007722332142293453,
"phone": 0.000021329120500013232,
"price": 0.00035265134647488594,
"unformatted_summary": 0.0020850494038313627,
"unformatted_text": 0.0003333515487611294
},
"field_id": 7995218,
"location_type": "exact",
"text": "<[email protected]>",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 201,
"end": 211,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:3",
"confidence": {
"address": 0.000027540043447515927,
"category": 0.000010694884622353129,
"date": 0.9998712539672852,
"email": 9.33384490053868e-6,
"person_name": 1.5892201190581545e-6,
"phone": 8.826008865980839e-7,
"price": 0.00002995034992636647,
"unformatted_summary": 0.0000219569519686047,
"unformatted_text": 1.942221160788904e-6
},
"field_id": 7995216,
"location_type": "exact",
"text": "1/31/23-24",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 3,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 218,
"end": 249,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:4",
"confidence": {
"address": 0.005381872411817312,
"category": 0.001203420921228826,
"date": 0.9030178785324097,
"email": 0.006967895198613405,
"person_name": 0.0030154474079608917,
"phone": 0.00134158821310848,
"price": 0.027588721364736557,
"unformatted_summary": 0.005391170270740986,
"unformatted_text": 0.0008079320541583002
},
"field_id": 7995216,
"location_type": "exact",
"text": "Wed, 18 Jan 2023 15:41:35 +0000",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 4,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 261,
"end": 302,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:5",
"confidence": {
"address": 0.0001263030426343903,
"category": 0.0029360696207731962,
"date": 0.0009791055927053094,
"email": 0.0031685044523328543,
"person_name": 0.00009216873877448961,
"phone": 0.00008320348570123315,
"price": 0.0019585448317229748,
"unformatted_summary": 0.7568739056587219,
"unformatted_text": 0.0006551116239279509
},
"field_id": 7995214,
"location_type": "exact",
"text": "This email originated outside the company",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 304,
"end": 390,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:7",
"confidence": {
"address": 0.00019925975357182324,
"category": 0.000595229968894273,
"date": 0.0007332686800509691,
"email": 0.0024335808120667934,
"person_name": 0.00015812122728675604,
"phone": 0.00010272095096297562,
"price": 0.001381307141855359,
"unformatted_summary": 0.9251060485839844,
"unformatted_text": 0.0025507875252515078
},
"field_id": 7995214,
"location_type": "exact",
"text": "Do not click links or open\nattachments unless you are expecting them from the sender--",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 394,
"end": 399,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:8",
"confidence": {
"address": 0.0007416647276841104,
"category": 0.008223495446145535,
"date": 0.014501003548502922,
"email": 0.41329869627952576,
"person_name": 0.015063710510730743,
"phone": 0.0027111379895359278,
"price": 0.010862074792385101,
"unformatted_summary": 0.27538561820983887,
"unformatted_text": 0.10216249525547028
},
"field_id": 7995218,
"location_type": "exact",
"text": "Chris",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 401,
"end": 428,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:9",
"confidence": {
"address": 0.00017808405391406268,
"category": 0.0005738077452406287,
"date": 0.00025953538715839386,
"email": 0.0010256002424284816,
"person_name": 0.00016684945148881525,
"phone": 0.00003977937740273774,
"price": 0.0009498075814917684,
"unformatted_summary": 0.8447691202163696,
"unformatted_text": 0.0010438825702294707
},
"field_id": 7995214,
"location_type": "exact",
"text": "Please review and clear the",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 456,
"end": 464,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:10",
"confidence": {
"address": 0.03253276273608208,
"category": 0.007228093221783638,
"date": 0.019860798493027687,
"email": 0.1574328988790512,
"person_name": 0.027986858040094376,
"phone": 0.0023471552412956953,
"price": 0.04910122603178024,
"unformatted_summary": 0.258338063955307,
"unformatted_text": 0.009223876520991325
},
"field_id": 7995214,
"location_type": "exact",
"text": "Atlantic",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 497,
"end": 516,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:11",
"confidence": {
"address": 0.003534270916134119,
"category": 0.0010155559284612536,
"date": 0.9755165576934814,
"email": 0.0022160911466926336,
"person_name": 0.00020671555830631405,
"phone": 0.00009227510599885136,
"price": 0.0025677033700048923,
"unformatted_summary": 0.009209167212247849,
"unformatted_text": 0.0003236125048715621
},
"field_id": 7995216,
"location_type": "exact",
"text": "1/31/2023-1/31/2024",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 8,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 516,
"end": 641,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:12",
"confidence": {
"address": 0.0005353102460503578,
"category": 0.002280764514580369,
"date": 0.0008064255234785378,
"email": 0.05500736087560654,
"person_name": 0.0006637959158979356,
"phone": 0.00027949715149588883,
"price": 0.0013629082823172212,
"unformatted_summary": 0.8179411888122559,
"unformatted_text": 0.06387944519519806
},
"field_id": 7995214,
"location_type": "exact",
"text": ".\nOur incumbents write on a QS 15x60. We are\nawaiting our incumbent’s position and will advise asap. We are awaiting updated\n",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 646,
"end": 685,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:13",
"confidence": {
"address": 0.0010873181745409966,
"category": 0.0021244690287858248,
"date": 0.006810908671468496,
"email": 0.019710486754775047,
"person_name": 0.0013096921611577272,
"phone": 0.0022474913857877254,
"price": 0.0040677571669220924,
"unformatted_summary": 0.7131211757659912,
"unformatted_text": 0.011470611207187176
},
"field_id": 7995214,
"location_type": "exact",
"text": "data and will send over ASAP!\nThank you",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 712,
"end": 792,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:14",
"confidence": {
"address": 0.8732799887657166,
"category": 0.00006152020068839192,
"date": 0.00006110154208727181,
"email": 0.001789148198440671,
"person_name": 0.000472341402200982,
"phone": 0.00006121864862507209,
"price": 0.000671803136356175,
"unformatted_summary": 0.00016398474690504372,
"unformatted_text": 0.00002255082654301077
},
"field_id": 7995220,
"location_type": "exact",
"text": "Atlantic Development Group LLC\n450 West 14th Street, 8th Floor\nNew York NY 10014",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 809,
"end": 831,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:15",
"confidence": {
"address": 0.00487004779279232,
"category": 0.00048497135867364705,
"date": 0.9513770341873169,
"email": 0.0024566894862800837,
"person_name": 0.00014861638192087412,
"phone": 0.00005619768853648566,
"price": 0.001170267234556377,
"unformatted_summary": 0.0023069472517818213,
"unformatted_text": 0.000059056263125967234
},
"field_id": 7995216,
"location_type": "exact",
"text": "1/31/2023 to 1/31/2024",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 11,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "address",
"spans": [
{
"start": 997,
"end": 1000,
"page_num": 0
}
],
"span_id": "58851:c:82567:idx:16",
"confidence": {
"address": 0.2846553921699524,
"category": 0.012506884522736073,
"date": 0.005742518696933985,
"email": 0.009580586105585098,
"person_name": 0.0020334848668426275,
"phone": 0.012589599937200546,
"price": 0.006159320008009672,
"unformatted_summary": 0.05333846062421799,
"unformatted_text": 0.0015500179724767804
},
"field_id": 7995220,
"location_type": "exact",
"text": "New",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 1221,
"end": 1233,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:17",
"confidence": {
"address": 0.0020550487097352743,
"category": 0.006021831650286913,
"date": 0.005440350156277418,
"email": 0.0014337970642372966,
"person_name": 0.0018008050974458456,
"phone": 0.01430349051952362,
"price": 0.0015175269218161702,
"unformatted_summary": 0.6000795364379883,
"unformatted_text": 0.006981654092669487
},
"field_id": 7995214,
"location_type": "exact",
"text": "are awaiting",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 1252,
"end": 1273,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:18",
"confidence": {
"address": 0.004914417862892151,
"category": 0.011744562536478043,
"date": 0.01713523641228676,
"email": 0.0164787620306015,
"person_name": 0.0029137632809579372,
"phone": 0.02464461699128151,
"price": 0.012451404705643654,
"unformatted_summary": 0.5928381681442261,
"unformatted_text": 0.008998478762805462
},
"field_id": 7995214,
"location_type": "exact",
"text": "and will provide asap",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 1337,
"end": 1355,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:19",
"confidence": {
"address": 0.0026791435666382313,
"category": 0.010163607075810432,
"date": 0.01516541838645935,
"email": 0.031308986246585846,
"person_name": 0.028079789131879807,
"phone": 0.014041329734027386,
"price": 0.012613016180694103,
"unformatted_summary": 0.7153558731079102,
"unformatted_text": 0.01892072893679142
},
"field_id": 7995214,
"location_type": "exact",
"text": "and let me know if",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 1360,
"end": 1389,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:20",
"confidence": {
"address": 0.0031381293665617704,
"category": 0.007344719022512436,
"date": 0.011888381093740463,
"email": 0.030500711873173714,
"person_name": 0.01579652540385723,
"phone": 0.007304693106561899,
"price": 0.0036424307618290186,
"unformatted_summary": 0.6645565032958984,
"unformatted_text": 0.025580815970897675
},
"field_id": 7995214,
"location_type": "exact",
"text": "have any questions. Thank you",
"groupings": []
},
{
"label": "person_name",
"spans": [
{
"start": 1407,
"end": 1415,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:21",
"confidence": {
"address": 0.041495807468891144,
"category": 0.04415673017501831,
"date": 0.01553230732679367,
"email": 0.074536994099617,
"person_name": 0.47227704524993896,
"phone": 0.017941055819392204,
"price": 0.05582745745778084,
"unformatted_summary": 0.05863335728645325,
"unformatted_text": 0.03195324167609215
},
"field_id": 7995219,
"location_type": "exact",
"text": "Catapano",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1474,
"end": 1481,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:22",
"confidence": {
"address": 0.5212575793266296,
"category": 0.0027237925678491592,
"date": 0.0012931827222928405,
"email": 0.0014211992966011167,
"person_name": 0.0030367793515324593,
"phone": 0.0014136617537587881,
"price": 0.008241795934736729,
"unformatted_summary": 0.0015519110020250082,
"unformatted_text": 0.00024010612105485052
},
"field_id": 7995220,
"location_type": "exact",
"text": "License",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1484,
"end": 1539,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:23",
"confidence": {
"address": 0.9969936013221741,
"category": 0.000012121369763917755,
"date": 0.00001869087282102555,
"email": 0.00001786125540093053,
"person_name": 0.00010291193757439032,
"phone": 0.00008697980229044333,
"price": 0.00029182436992414296,
"unformatted_summary": 0.00008526646706741303,
"unformatted_text": 1.9768799575103913e-6
},
"field_id": 7995220,
"location_type": "exact",
"text": "0M15937\n1350 Broadway, Suite 1400\n10018\n,\nNew York\n,\nNY",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 1546,
"end": 1580,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:24",
"confidence": {
"address": 0.00008691292896401137,
"category": 0.00023813136795070022,
"date": 9.973568012355827e-6,
"email": 0.9966390132904053,
"person_name": 0.00017857406055554748,
"phone": 0.00007831591210560873,
"price": 0.00011279771570116282,
"unformatted_summary": 0.0009187047835439444,
"unformatted_text": 0.0007636007503606379
},
"field_id": 7995218,
"location_type": "exact",
"text": "[email protected]",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 1589,
"end": 1623,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:25",
"confidence": {
"address": 0.0001100483350455761,
"category": 0.0002485946752130985,
"date": 8.70634539751336e-6,
"email": 0.9970836639404297,
"person_name": 0.00036884172004647553,
"phone": 0.00006633102020714432,
"price": 0.00008581174915889278,
"unformatted_summary": 0.0009656022302806377,
"unformatted_text": 0.0008172941743396223
},
"field_id": 7995218,
"location_type": "exact",
"text": "[email protected]",
"groupings": []
},
{
"label": "phone",
"spans": [
{
"start": 1627,
"end": 1641,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:26",
"confidence": {
"address": 0.000139348951051943,
"category": 0.00003462995300651528,
"date": 0.00003645367905846797,
"email": 0.0009107004734687507,
"person_name": 0.00003112547710770741,
"phone": 0.9960814118385315,
"price": 0.00009454113023821265,
"unformatted_summary": 0.0002793708990793675,
"unformatted_text": 0.000033026728488039225
},
"field_id": 7995221,
"location_type": "exact",
"text": "(917) 282 1366",
"groupings": []
},
{
"label": "phone",
"spans": [
{
"start": 1643,
"end": 1646,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:27",
"confidence": {
"address": 0.007406274788081646,
"category": 0.002818320645019412,
"date": 0.0034486553631722927,
"email": 0.059738341718912125,
"person_name": 0.0021273798774927855,
"phone": 0.6653096079826355,
"price": 0.00722323777154088,
"unformatted_summary": 0.011414493434131145,
"unformatted_text": 0.0015901279402896762
},
"field_id": 7995221,
"location_type": "exact",
"text": "tel",
"groupings": []
},
{
"label": "phone",
"spans": [
{
"start": 1648,
"end": 1665,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:28",
"confidence": {
"address": 0.00030506536131724715,
"category": 0.000016983540263026953,
"date": 0.00004123047256143764,
"email": 0.0007874309667386115,
"person_name": 0.000049782145651988685,
"phone": 0.9983726143836975,
"price": 0.00008048633753787726,
"unformatted_summary": 0.00019644656276796013,
"unformatted_text": 0.000017482849216321483
},
"field_id": 7995221,
"location_type": "exact",
"text": "917)%20282%201366",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 1671,
"end": 1683,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:29",
"confidence": {
"address": 0.0037331730127334595,
"category": 0.0008868198492564261,
"date": 0.00011854319018311799,
"email": 0.8315425515174866,
"person_name": 0.0016173883341252804,
"phone": 0.0003632939187809825,
"price": 0.0006106515065766871,
"unformatted_summary": 0.004774203523993492,
"unformatted_text": 0.0025664002168923616
},
"field_id": 7995218,
"location_type": "exact",
"text": "jencapgroup.",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 1701,
"end": 1702,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:30",
"confidence": {
"address": 0.06703846156597137,
"category": 0.010220618918538094,
"date": 0.08350713551044464,
"email": 0.33347758650779724,
"person_name": 0.008412898518145084,
"phone": 0.0028604234103113413,
"price": 0.051018860191106796,
"unformatted_summary": 0.12899149954319,
"unformatted_text": 0.0028393766842782497
},
"field_id": 7995218,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 1711,
"end": 1712,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:31",
"confidence": {
"address": 0.09145374596118927,
"category": 0.010560726746916771,
"date": 0.05020742863416672,
"email": 0.2497072070837021,
"person_name": 0.007613573223352432,
"phone": 0.0019832118414342403,
"price": 0.027752572670578957,
"unformatted_summary": 0.19428232312202454,
"unformatted_text": 0.002695879666134715
},
"field_id": 7995218,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 1722,
"end": 1734,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:32",
"confidence": {
"address": 0.062130965292453766,
"category": 0.005808031652122736,
"date": 0.03383025527000427,
"email": 0.5325055122375488,
"person_name": 0.004320240579545498,
"phone": 0.0011980548733845353,
"price": 0.016849717125296593,
"unformatted_summary": 0.06172335147857666,
"unformatted_text": 0.004670002963393927
},
"field_id": 7995218,
"location_type": "exact",
"text": ".outlook.com",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1942,
"end": 1944,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:33",
"confidence": {
"address": 0.16280102729797363,
"category": 0.0010364135960116982,
"date": 0.0551726408302784,
"email": 0.03324657306075096,
"person_name": 0.07012571394443512,
"phone": 0.012161641381680965,
"price": 0.14394406974315643,
"unformatted_summary": 0.07193344086408615,
"unformatted_text": 0.009275482036173344
},
"field_id": 7995220,
"location_type": "exact",
"text": "sb",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 1945,
"end": 1946,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:34",
"confidence": {
"address": 0.16098183393478394,
"category": 0.0007979664951562881,
"date": 0.05558185651898384,
"email": 0.025964481756091118,
"person_name": 0.0701867863535881,
"phone": 0.01219291053712368,
"price": 0.18217432498931885,
"unformatted_summary": 0.06626975536346436,
"unformatted_text": 0.008016067557036877
},
"field_id": 7995217,
"location_type": "exact",
"text": "d",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 20,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "address",
"spans": [
{
"start": 1947,
"end": 1949,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:35",
"confidence": {
"address": 0.17285703122615814,
"category": 0.0007388622034341097,
"date": 0.047408152371644974,
"email": 0.03708156943321228,
"person_name": 0.07432276010513306,
"phone": 0.012987292371690273,
"price": 0.15282069146633148,
"unformatted_summary": 0.0688738152384758,
"unformatted_text": 0.009226001799106598
},
"field_id": 7995220,
"location_type": "exact",
"text": "ey",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1957,
"end": 1958,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:36",
"confidence": {
"address": 0.17496764659881592,
"category": 0.0008018360240384936,
"date": 0.04441562667489052,
"email": 0.041422661393880844,
"person_name": 0.0908198207616806,
"phone": 0.01662161573767662,
"price": 0.1329774260520935,
"unformatted_summary": 0.07862978428602219,
"unformatted_text": 0.008388984948396683
},
"field_id": 7995220,
"location_type": "exact",
"text": "4",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1959,
"end": 1960,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:37",
"confidence": {
"address": 0.17736105620861053,
"category": 0.0008887562435120344,
"date": 0.0422537624835968,
"email": 0.029262075200676918,
"person_name": 0.07897958904504776,
"phone": 0.012576919980347157,
"price": 0.11452164500951767,
"unformatted_summary": 0.0731869786977768,
"unformatted_text": 0.008790628053247929
},
"field_id": 7995220,
"location_type": "exact",
"text": "L",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1961,
"end": 1963,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:38",
"confidence": {
"address": 0.16636553406715393,
"category": 0.0013819030718877912,
"date": 0.04482794180512428,
"email": 0.04043105989694595,
"person_name": 0.08814060688018799,
"phone": 0.016538653522729874,
"price": 0.13813038170337677,
"unformatted_summary": 0.06417829543352127,
"unformatted_text": 0.012073012068867683
},
"field_id": 7995220,
"location_type": "exact",
"text": "Aw",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1964,
"end": 1966,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:39",
"confidence": {
"address": 0.16214296221733093,
"category": 0.0011295838048681617,
"date": 0.04595557600259781,
"email": 0.03389715030789375,
"person_name": 0.11226943880319595,
"phone": 0.018246842548251152,
"price": 0.1333446353673935,
"unformatted_summary": 0.06348349899053574,
"unformatted_text": 0.011139698326587677
},
"field_id": 7995220,
"location_type": "exact",
"text": "DA",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1967,
"end": 1969,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:40",
"confidence": {
"address": 0.19357919692993164,
"category": 0.0010497762123122811,
"date": 0.04906075447797775,
"email": 0.03529510274529457,
"person_name": 0.09747447073459625,
"phone": 0.014063972048461437,
"price": 0.12302671372890472,
"unformatted_summary": 0.05715383216738701,
"unformatted_text": 0.00975149404257536
},
"field_id": 7995220,
"location_type": "exact",
"text": "LC",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1974,
"end": 1975,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:41",
"confidence": {
"address": 0.17096328735351562,
"category": 0.0006989490939304233,
"date": 0.05650774762034416,
"email": 0.03309549018740654,
"person_name": 0.08115199953317642,
"phone": 0.013532403856515884,
"price": 0.12619513273239136,
"unformatted_summary": 0.05037881061434746,
"unformatted_text": 0.009322556667029858
},
"field_id": 7995220,
"location_type": "exact",
"text": "i",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1976,
"end": 1977,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:42",
"confidence": {
"address": 0.19833943247795105,
"category": 0.0008664996712468565,
"date": 0.04617001488804817,
"email": 0.04447891190648079,
"person_name": 0.0975273996591568,
"phone": 0.020388493314385414,
"price": 0.1258319765329361,
"unformatted_summary": 0.08836177736520767,
"unformatted_text": 0.011327491141855717
},
"field_id": 7995220,
"location_type": "exact",
"text": "2",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1979,
"end": 1980,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:43",
"confidence": {
"address": 0.19175605475902557,
"category": 0.0008531020721420646,
"date": 0.046334657818078995,
"email": 0.02930215559899807,
"person_name": 0.07194598019123077,
"phone": 0.012944354675710201,
"price": 0.09633350372314453,
"unformatted_summary": 0.05238441005349159,
"unformatted_text": 0.00910679530352354
},
"field_id": 7995220,
"location_type": "exact",
"text": "M",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1983,
"end": 1985,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:44",
"confidence": {
"address": 0.19063375890254974,
"category": 0.001003059558570385,
"date": 0.0471673458814621,
"email": 0.034212663769721985,
"person_name": 0.11399078369140625,
"phone": 0.015419445000588894,
"price": 0.11943580210208893,
"unformatted_summary": 0.061472781002521515,
"unformatted_text": 0.010219037532806396
},
"field_id": 7995220,
"location_type": "exact",
"text": "LC",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1986,
"end": 1988,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:45",
"confidence": {
"address": 0.18648666143417358,
"category": 0.001045240554958582,
"date": 0.055410388857126236,
"email": 0.03445342555642128,
"person_name": 0.11381623893976212,
"phone": 0.019275669008493423,
"price": 0.14796042442321777,
"unformatted_summary": 0.08220548927783966,
"unformatted_text": 0.012264706194400787
},
"field_id": 7995220,
"location_type": "exact",
"text": "BT",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1990,
"end": 1991,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:46",
"confidence": {
"address": 0.176559716463089,
"category": 0.0007911124266684055,
"date": 0.03689727932214737,
"email": 0.033793818205595016,
"person_name": 0.10358051210641861,
"phone": 0.018459931015968323,
"price": 0.14264464378356934,
"unformatted_summary": 0.06384624540805817,
"unformatted_text": 0.01039989572018385
},
"field_id": 7995220,
"location_type": "exact",
"text": "6",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1993,
"end": 1994,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:47",
"confidence": {
"address": 0.16951757669448853,
"category": 0.0007095547625795007,
"date": 0.04663507640361786,
"email": 0.04509899765253067,
"person_name": 0.1025230884552002,
"phone": 0.016879025846719742,
"price": 0.1243305578827858,
"unformatted_summary": 0.07089332491159439,
"unformatted_text": 0.009871925227344036
},
"field_id": 7995220,
"location_type": "exact",
"text": "1",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 1996,
"end": 1997,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:48",
"confidence": {
"address": 0.18163105845451355,
"category": 0.0009130396647378802,
"date": 0.04038969427347183,
"email": 0.028619615361094475,
"person_name": 0.1049981489777565,
"phone": 0.015443364158272743,
"price": 0.12492835521697998,
"unformatted_summary": 0.06172805279493332,
"unformatted_text": 0.009918784722685814
},
"field_id": 7995220,
"location_type": "exact",
"text": "W",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 2003,
"end": 2005,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:50",
"confidence": {
"address": 0.18682309985160828,
"category": 0.0010333014652132988,
"date": 0.053210560232400894,
"email": 0.0377175472676754,
"person_name": 0.13279108703136444,
"phone": 0.02055993862450123,
"price": 0.12622962892055511,
"unformatted_summary": 0.05731090530753136,
"unformatted_text": 0.012112225405871868
},
"field_id": 7995220,
"location_type": "exact",
"text": "VC",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 2006,
"end": 2007,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:51",
"confidence": {
"address": 0.16629382967948914,
"category": 0.0007561090751551092,
"date": 0.0365326926112175,
"email": 0.030880719423294067,
"person_name": 0.10328097641468048,
"phone": 0.01631750352680683,
"price": 0.1307966560125351,
"unformatted_summary": 0.05673510581254959,
"unformatted_text": 0.009952339343726635
},
"field_id": 7995220,
"location_type": "exact",
"text": "6",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 2008,
"end": 2009,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:52",
"confidence": {
"address": 0.21309581398963928,
"category": 0.0007323987083509564,
"date": 0.05367064103484154,
"email": 0.03053910657763481,
"person_name": 0.09070529788732529,
"phone": 0.016798265278339386,
"price": 0.13479626178741455,
"unformatted_summary": 0.04899086058139801,
"unformatted_text": 0.010302000679075718
},
"field_id": 7995220,
"location_type": "exact",
"text": "n",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 2010,
"end": 2011,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:53",
"confidence": {
"address": 0.19975006580352783,
"category": 0.0007904446683824062,
"date": 0.03288361802697182,
"email": 0.018365154042840004,
"person_name": 0.04715178906917572,
"phone": 0.006989157758653164,
"price": 0.11744492501020432,
"unformatted_summary": 0.04229045659303665,
"unformatted_text": 0.0074925534427165985
},
"field_id": 7995220,
"location_type": "exact",
"text": "%",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 2052,
"end": 2053,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:54",
"confidence": {
"address": 0.1934342235326767,
"category": 0.0011035421630367637,
"date": 0.04714341089129448,
"email": 0.04268030822277069,
"person_name": 0.06122446432709694,
"phone": 0.012867463752627373,
"price": 0.10667791217565536,
"unformatted_summary": 0.06688784807920456,
"unformatted_text": 0.00850772950798273
},
"field_id": 7995220,
"location_type": "exact",
"text": "7",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 2061,
"end": 2063,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:55",
"confidence": {
"address": 0.1508643925189972,
"category": 0.001526623615063727,
"date": 0.06238879635930061,
"email": 0.03682452440261841,
"person_name": 0.08521554619073868,
"phone": 0.01336344052106142,
"price": 0.16824489831924438,
"unformatted_summary": 0.08175115287303925,
"unformatted_text": 0.010021897032856941
},
"field_id": 7995217,
"location_type": "exact",
"text": "zl",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 21,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "address",
"spans": [
{
"start": 2065,
"end": 2066,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:56",
"confidence": {
"address": 0.16920138895511627,
"category": 0.0009780444670468569,
"date": 0.05189566686749458,
"email": 0.04767739400267601,
"person_name": 0.06661298871040344,
"phone": 0.012917065061628819,
"price": 0.11252681910991669,
"unformatted_summary": 0.10138995945453644,
"unformatted_text": 0.009906879626214504
},
"field_id": 7995220,
"location_type": "exact",
"text": "2",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2074,
"end": 2085,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:57",
"confidence": {
"address": 0.009142824448645115,
"category": 0.0008677858859300613,
"date": 0.02259194105863571,
"email": 0.012251529842615128,
"person_name": 0.024034004658460617,
"phone": 0.006257783155888319,
"price": 0.25674137473106384,
"unformatted_summary": 0.44867563247680664,
"unformatted_text": 0.011894691735506058
},
"field_id": 7995214,
"location_type": "exact",
"text": "Ff0qifHY%3D",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2102,
"end": 2113,
"page_num": 1
}
],
"span_id": "58851:c:82567:idx:58",
"confidence": {
"address": 0.000345508917234838,
"category": 0.0009611872956156731,
"date": 0.001188040361739695,
"email": 0.00035357673186808825,
"person_name": 0.00012280500959604979,
"phone": 0.00013070109707769006,
"price": 0.00032807153183966875,
"unformatted_summary": 0.4505598247051239,
"unformatted_text": 0.0005950257182121277
},
"field_id": 7995214,
"location_type": "exact",
"text": "identiality",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2123,
"end": 2181,
"page_num": 1
},
{
"start": 2182,
"end": 2698,
"page_num": 2
}
],
"span_id": "58851:c:82567:idx:59",
"confidence": {
"address": 0.00022624914709012955,
"category": 0.0002162227319786325,
"date": 0.0005606206832453609,
"email": 0.0014745532535016537,
"person_name": 0.00010406442015664652,
"phone": 0.00012125390639994293,
"price": 0.0006933940458111465,
"unformatted_summary": 0.973061203956604,
"unformatted_text": 0.004344417247921228
},
"field_id": 7995214,
"location_type": "exact",
"text": "This e-mail transmission, and any attachments, may contain\ninformation that is confidential or legally privileged. If you are not the intended\nrecipient, or a person responsible for delivering it to the intended recipient, you\nare\nnotified that you must not read, reproduce or use any of the information\ncontained in or attached to this transmission.\nIf you have received this\ntransmission in error, please immediately notify the sender by telephone or return\ne-mail and delete the original transmission and its attachments without reading or\nsaving in any manner. Thank you.",
"groupings": []
}
],
"18585": [
{
"label": "email",
"spans": [
{
"start": 4,
"end": 73,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:0",
"confidence": {
"address": 0.00012103059998480603,
"category": 0.000010721471880970057,
"date": 0.00003826210377155803,
"email": 0.9976000785827637,
"person_name": 0.0006494711269624531,
"phone": 0.000013492900507117156,
"price": 0.00011579004785744473,
"unformatted_summary": 0.00006146189116407186,
"unformatted_text": 0.0000321899788104929
},
"field_id": 7995218,
"location_type": "exact",
"text": "\"[email protected]\" <[email protected]>"
},
{
"label": "email",
"spans": [
{
"start": 99,
"end": 135,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:2",
"confidence": {
"address": 0.0004430352710187435,
"category": 0.00004240205089445226,
"date": 0.00012402722495608032,
"email": 0.9872874021530151,
"person_name": 0.007551866117864847,
"phone": 0.00001378617434966145,
"price": 0.00023155387316364795,
"unformatted_summary": 0.0003183747176080942,
"unformatted_text": 0.00008434398478129879
},
"field_id": 7995218,
"location_type": "exact",
"text": "<[email protected]>"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 266,
"end": 388,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:5",
"confidence": {
"address": 0.00009519440936855972,
"category": 0.0008463397389277816,
"date": 0.0008216850110329688,
"email": 0.012042167596518993,
"person_name": 0.00035406657843850553,
"phone": 0.00016844150377437472,
"price": 0.0008734191069379449,
"unformatted_summary": 0.8663501739501953,
"unformatted_text": 0.006597177591174841
},
"field_id": 7995214,
"location_type": "exact",
"text": "email originated outside the company. Do not click links or open\nattachments unless you are expecting them from the sender"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 394,
"end": 399,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:6",
"confidence": {
"address": 0.00019608030561357737,
"category": 0.003885225858539343,
"date": 0.009475036524236202,
"email": 0.19039398431777954,
"person_name": 0.006200478877872229,
"phone": 0.002717337105423212,
"price": 0.0049726166762411594,
"unformatted_summary": 0.4254704713821411,
"unformatted_text": 0.06229761987924576
},
"field_id": 7995214,
"location_type": "exact",
"text": "Chris"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 401,
"end": 428,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:7",
"confidence": {
"address": 0.00013094762107357383,
"category": 0.0005602298770099878,
"date": 0.0004282401059754193,
"email": 0.0014635861152783036,
"person_name": 0.00037723209243267775,
"phone": 0.00008349709241883829,
"price": 0.00046219295472837985,
"unformatted_summary": 0.681071937084198,
"unformatted_text": 0.00251369783654809
},
"field_id": 7995214,
"location_type": "exact",
"text": "Please review and clear the"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 516,
"end": 585,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:9",
"confidence": {
"address": 0.0003353882348164916,
"category": 0.0008973244111984968,
"date": 0.001187909278087318,
"email": 0.005556899588555098,
"person_name": 0.00045004952698946,
"phone": 0.0004349514201749116,
"price": 0.0006202757940627635,
"unformatted_summary": 0.8075700998306274,
"unformatted_text": 0.09096559882164001
},
"field_id": 7995214,
"location_type": "exact",
"text": ".\nOur incumbents write on a QS 15x60. We are\nawaiting our incumbent’s"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 595,
"end": 632,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:10",
"confidence": {
"address": 0.0004224255681037903,
"category": 0.00046460796147584915,
"date": 0.0017811763100326061,
"email": 0.004599768202751875,
"person_name": 0.0016171775059774518,
"phone": 0.0005464073037728667,
"price": 0.002349441172555089,
"unformatted_summary": 0.8258137106895447,
"unformatted_text": 0.03425212949514389
},
"field_id": 7995214,
"location_type": "exact",
"text": "and will advise asap. We are awaiting"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 651,
"end": 674,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:11",
"confidence": {
"address": 0.0005582422600127757,
"category": 0.0013807073701173067,
"date": 0.005553173832595348,
"email": 0.0052744853310287,
"person_name": 0.0020915388595312834,
"phone": 0.0017673850525170565,
"price": 0.005152535159140825,
"unformatted_summary": 0.8729618191719055,
"unformatted_text": 0.014610040001571178
},
"field_id": 7995214,
"location_type": "exact",
"text": "and will send over ASAP"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 682,
"end": 685,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:12",
"confidence": {
"address": 0.0003292943583801389,
"category": 0.00048035025247372687,
"date": 0.0017409290885552764,
"email": 0.012791791930794716,
"person_name": 0.001522455713711679,
"phone": 0.0012836805544793606,
"price": 0.0011683051707223058,
"unformatted_summary": 0.8328295946121216,
"unformatted_text": 0.019368724897503853
},
"field_id": 7995214,
"location_type": "exact",
"text": "you"
},
{
"label": "address",
"spans": [
{
"start": 712,
"end": 738,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:13",
"confidence": {
"address": 0.5095491409301758,
"category": 0.00041468837298452854,
"date": 0.0006765769212506711,
"email": 0.018992053344845772,
"person_name": 0.017191162332892418,
"phone": 0.00007998047658475116,
"price": 0.005774427205324173,
"unformatted_summary": 0.0010613835183903575,
"unformatted_text": 0.0006792977801524103
},
"field_id": 7995220,
"location_type": "exact",
"text": "Atlantic Development Group"
},
{
"label": "address",
"spans": [
{
"start": 743,
"end": 774,
"page_num": 0
}
],
"span_id": "58851:c:82569:idx:14",
"confidence": {
"address": 0.9950422048568726,
"category": 0.00001073371367965592,
"date": 0.00004296520273783244,
"email": 0.00007033692963887006,
"person_name": 0.00015018036356195807,
"phone": 0.000024573926566517912,
"price": 0.00022212692419998348,
"unformatted_summary": 0.00011062463454436511,
"unformatted_text": 8.176988558261655e-6
},
"field_id": 7995220,
"location_type": "exact",
"text": "450 West 14th Street, 8th Floor"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 1221,
"end": 1233,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:16",
"confidence": {
"address": 0.0018036279361695051,
"category": 0.00526453647762537,
"date": 0.0074363211169838905,
"email": 0.0021268981508910656,
"person_name": 0.003973998129367828,
"phone": 0.022298960015177727,
"price": 0.002620871877297759,
"unformatted_summary": 0.3797803819179535,
"unformatted_text": 0.018415428698062897
},
"field_id": 7995214,
"location_type": "exact",
"text": "are awaiting"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 1252,
"end": 1260,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:17",
"confidence": {
"address": 0.0025153716560453176,
"category": 0.01348169893026352,
"date": 0.01797793060541153,
"email": 0.014842785894870758,
"person_name": 0.003495597280561924,
"phone": 0.03951876610517502,
"price": 0.009322965517640114,
"unformatted_summary": 0.3640393614768982,
"unformatted_text": 0.02027447707951069
},
"field_id": 7995214,
"location_type": "exact",
"text": "and will"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 1341,
"end": 1355,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:18",
"confidence": {
"address": 0.0013474812731146812,
"category": 0.004817185923457146,
"date": 0.011879106983542442,
"email": 0.024547293782234192,
"person_name": 0.03405729681253433,
"phone": 0.014357781037688255,
"price": 0.014764202758669853,
"unformatted_summary": 0.7304940223693848,
"unformatted_text": 0.026168126612901688
},
"field_id": 7995214,
"location_type": "exact",
"text": "let me know if"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 1360,
"end": 1379,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:19",
"confidence": {
"address": 0.0016294483793899417,
"category": 0.009773066267371178,
"date": 0.008394559845328331,
"email": 0.01003347896039486,
"person_name": 0.027141818776726723,
"phone": 0.009422020986676216,
"price": 0.007307879626750946,
"unformatted_summary": 0.7114617824554443,
"unformatted_text": 0.060641344636678696
},
"field_id": 7995214,
"location_type": "exact",
"text": "have any questions."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 1386,
"end": 1389,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:20",
"confidence": {
"address": 0.0037600223440676928,
"category": 0.00224493769928813,
"date": 0.00893326010555029,
"email": 0.04269369691610336,
"person_name": 0.016345756128430367,
"phone": 0.023998742923140526,
"price": 0.0032925864215940237,
"unformatted_summary": 0.46333521604537964,
"unformatted_text": 0.026728453114628792
},
"field_id": 7995214,
"location_type": "exact",
"text": "you"
},
{
"label": "person_name",
"spans": [
{
"start": 1407,
"end": 1415,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:21",
"confidence": {
"address": 0.012546278536319733,
"category": 0.021183384582400322,
"date": 0.0109916552901268,
"email": 0.0693594440817833,
"person_name": 0.5392287373542786,
"phone": 0.003488698275759816,
"price": 0.022241106256842613,
"unformatted_summary": 0.02717638574540615,
"unformatted_text": 0.01638542115688324
},
"field_id": 7995219,
"location_type": "exact",
"text": "Catapano"
},
{
"label": "address",
"spans": [
{
"start": 1485,
"end": 1486,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:22",
"confidence": {
"address": 0.5423546433448792,
"category": 0.00019099436758551747,
"date": 0.00003924618795281276,
"email": 0.00010737381671788171,
"person_name": 0.00159751798491925,
"phone": 0.0001871773856692016,
"price": 0.0005800766521133482,
"unformatted_summary": 0.00007373608968919143,
"unformatted_text": 0.00003162796201650053
},
"field_id": 7995220,
"location_type": "exact",
"text": "M"
},
{
"label": "address",
"spans": [
{
"start": 1489,
"end": 1539,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:23",
"confidence": {
"address": 0.6114424467086792,
"category": 0.00014518512762151659,
"date": 0.0000253516136581311,
"email": 0.0000766342127462849,
"person_name": 0.0011725068325176835,
"phone": 0.00009347426384920254,
"price": 0.0003696182102430612,
"unformatted_summary": 0.00009629206033423543,
"unformatted_text": 0.000015906953194644302
},
"field_id": 7995220,
"location_type": "exact",
"text": "37\n1350 Broadway, Suite 1400\n10018\n,\nNew York\n,\nNY"
},
{
"label": "email",
"spans": [
{
"start": 1546,
"end": 1580,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:24",
"confidence": {
"address": 0.00009581015183357522,
"category": 4.22884431827697e-6,
"date": 3.832679794868454e-6,
"email": 0.998501718044281,
"person_name": 0.00016291302745230496,
"phone": 0.000024504002794856206,
"price": 0.00004455773887457326,
"unformatted_summary": 0.000013401649084698875,
"unformatted_text": 8.339548003277741e-6
},
"field_id": 7995218,
"location_type": "exact",
"text": "[email protected]"
},
{
"label": "phone",
"spans": [
{
"start": 1627,
"end": 1641,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:26",
"confidence": {
"address": 0.00019556036568246782,
"category": 0.00001290753971261438,
"date": 0.000015835848898859695,
"email": 0.0004981174133718014,
"person_name": 0.00002700547338463366,
"phone": 0.9976884722709656,
"price": 0.00002421100543870125,
"unformatted_summary": 0.000055328477174043655,
"unformatted_text": 7.1934578045329545e-6
},
"field_id": 7995221,
"location_type": "exact",
"text": "(917) 282 1366"
},
{
"label": "phone",
"spans": [
{
"start": 1643,
"end": 1646,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:27",
"confidence": {
"address": 0.0009994010906666517,
"category": 0.0001317184796789661,
"date": 0.00022475920559372753,
"email": 0.007399971596896648,
"person_name": 0.00026712004910223186,
"phone": 0.9078757166862488,
"price": 0.00041496282210573554,
"unformatted_summary": 0.00046092274715192616,
"unformatted_text": 0.000042484363802941516
},
"field_id": 7995221,
"location_type": "exact",
"text": "tel"
},
{
"label": "phone",
"spans": [
{
"start": 1648,
"end": 1665,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:28",
"confidence": {
"address": 0.0006711893365718424,
"category": 0.00002166488229704555,
"date": 0.00003634336462710053,
"email": 0.0013385018100962043,
"person_name": 0.00007727687625447288,
"phone": 0.9964168071746826,
"price": 0.00006386343011399731,
"unformatted_summary": 0.00012273882748559117,
"unformatted_text": 0.000011963414181082044
},
"field_id": 7995221,
"location_type": "exact",
"text": "917)%20282%201366"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2074,
"end": 2085,
"page_num": 1
}
],
"span_id": "58851:c:82569:idx:29",
"confidence": {
"address": 0.004078981000930071,
"category": 0.0015056317206472158,
"date": 0.024342434480786324,
"email": 0.025025110691785812,
"person_name": 0.019967518746852875,
"phone": 0.009810768067836761,
"price": 0.11612076312303543,
"unformatted_summary": 0.4238394498825073,
"unformatted_text": 0.018019698560237885
},
"field_id": 7995214,
"location_type": "exact",
"text": "Ff0qifHY%3D"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2123,
"end": 2181,
"page_num": 1
},
{
"start": 2182,
"end": 2698,
"page_num": 2
}
],
"span_id": "58851:c:82569:idx:30",
"confidence": {
"address": 0.0001265776518266648,
"category": 0.00017174995446112007,
"date": 0.0006964803906157613,
"email": 0.0013985952828079462,
"person_name": 0.00015781406546011567,
"phone": 0.00014238353469409049,
"price": 0.000538386928383261,
"unformatted_summary": 0.9627165198326111,
"unformatted_text": 0.005711724516004324
},
"field_id": 7995214,
"location_type": "exact",
"text": "This e-mail transmission, and any attachments, may contain\ninformation that is confidential or legally privileged. If you are not the intended\nrecipient, or a person responsible for delivering it to the intended recipient, you\nare\nnotified that you must not read, reproduce or use any of the information\ncontained in or attached to this transmission.\nIf you have received this\ntransmission in error, please immediately notify the sender by telephone or return\ne-mail and delete the original transmission and its attachments without reading or\nsaving in any manner. Thank you."
}
]
},
"components": {}
}
},
{
"submissionfile_id": 58853,
"etl_output": "indico-file:///storage/submission/20869/39855/58853/etl_output.json",
"input_filename": "ACORD Form 20230106-173819.pdf",
"input_filepath": "indico-file:///storage/submission/20869/39855/58853.pdf",
"input_filesize": 80457,
"model_results": {
"ORIGINAL": {
"18584": [
{
"label": "phone",
"spans": [
{
"start": 291,
"end": 303,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:4",
"confidence": {
"address": 0.0022164711263030767,
"category": 0.00002105594649037812,
"date": 0.00014247950457502156,
"email": 0.008247091434895992,
"person_name": 0.00020368368132039905,
"phone": 0.9766430258750916,
"price": 0.0007636321242898703,
"unformatted_summary": 0.002228692639619112,
"unformatted_text": 0.00004184956560493447
},
"field_id": 7995221,
"location_type": "exact",
"text": "(516) 228-12",
"groupings": [],
"normalized": {
"text": "(516) 228-12",
"start": 291,
"end": 303,
"structured": null,
"formatted": "(516) 228-12",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "(516) 228-12",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10435,
"end": 10436,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:81",
"confidence": {
"address": 0.000142337114084512,
"category": 0.003184732748195529,
"date": 0.00017105329607147723,
"email": 0.006373540498316288,
"person_name": 0.00034973828587681055,
"phone": 0.0006841486319899559,
"price": 0.0004366332432255149,
"unformatted_summary": 0.5922831892967224,
"unformatted_text": 0.3952084481716156
},
"field_id": 7995214,
"location_type": "exact",
"text": ".",
"groupings": [],
"normalized": {
"text": ".",
"start": 10435,
"end": 10436,
"structured": null,
"formatted": ".",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": ".",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "date",
"spans": [
{
"start": 15644,
"end": 15645,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:128",
"confidence": {
"address": 0.00007649740291526541,
"category": 0.000055618500482523814,
"date": 0.7969796061515808,
"email": 0.00004416063165990636,
"person_name": 0.000013268735528981779,
"phone": 7.061179985612398e-6,
"price": 0.00018498934514354914,
"unformatted_summary": 0.0001343555049970746,
"unformatted_text": 7.114173513400601e-6
},
"field_id": 7995216,
"location_type": "exact",
"text": "/",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 55,
"group_id": "18584:Linked Label Group 1"
}
],
"normalized": {
"text": "/",
"start": 15644,
"end": 15645,
"structured": null,
"formatted": "/",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "/",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "unformatted_text",
"spans": [
{
"start": 19472,
"end": 19473,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:165",
"confidence": {
"address": 0.00037927713128738105,
"category": 0.011891324073076248,
"date": 0.00033888895995914936,
"email": 0.011936956085264683,
"person_name": 0.001110902871005237,
"phone": 0.0024510319344699383,
"price": 0.0008852296741679311,
"unformatted_summary": 0.2602809965610504,
"unformatted_text": 0.6865029335021973
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"groupings": [],
"normalized": {
"text": ".",
"start": 19472,
"end": 19473,
"structured": null,
"formatted": ".",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": ".",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "price",
"spans": [
{
"start": 25553,
"end": 25555,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:226",
"confidence": {
"address": 0.11472295969724655,
"category": 0.03020067699253559,
"date": 0.023239200934767723,
"email": 0.03807252272963524,
"person_name": 0.011173452250659466,
"phone": 0.005281832534819841,
"price": 0.29372522234916687,
"unformatted_summary": 0.13796906173229218,
"unformatted_text": 0.03628695011138916
},
"field_id": 7995217,
"location_type": "exact",
"text": "OH",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 101,
"group_id": "18584:Linked Label Group 1"
}
],
"normalized": {
"text": "OH",
"start": 25553,
"end": 25555,
"structured": null,
"formatted": "OH",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "OH",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
}
],
"18585": [
{
"label": "date",
"spans": [
{
"start": 71,
"end": 72,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:0",
"confidence": {
"address": 0.0005107185570523143,
"category": 0.0003309747262392193,
"date": 0.5137461423873901,
"email": 0.0000486946155433543,
"person_name": 0.0002192990214098245,
"phone": 0.0001452378201065585,
"price": 0.0003101070469710976,
"unformatted_summary": 0.00038499332731589675,
"unformatted_text": 0.000016758966012275778
},
"field_id": null,
"location_type": "exact",
"text": "/"
},
{
"label": "date",
"spans": [
{
"start": 74,
"end": 75,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:1",
"confidence": {
"address": 0.0006370246992446482,
"category": 0.00036039395490661263,
"date": 0.43229278922080994,
"email": 0.00004809411257156171,
"person_name": 0.0002481791889294982,
"phone": 0.00017295849102083594,
"price": 0.0002891960903070867,
"unformatted_summary": 0.00041371103725396097,
"unformatted_text": 0.000015537580111413263
},
"field_id": null,
"location_type": "exact",
"text": "/"
},
{
"label": "date",
"spans": [
{
"start": 81,
"end": 91,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:2",
"confidence": {
"address": 0.0002340502105653286,
"category": 0.00011413689207984135,
"date": 0.9215593338012695,
"email": 0.00003264928818680346,
"person_name": 0.00004805173011845909,
"phone": 0.000013850658433511853,
"price": 0.00005739762491430156,
"unformatted_summary": 0.00008641050226287916,
"unformatted_text": 3.989776359958341e-6
},
"field_id": null,
"location_type": "exact",
"text": "01/06/2023"
},
{
"label": "address",
"spans": [
{
"start": 99,
"end": 148,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:3",
"confidence": {
"address": 0.9998871684074402,
"category": 2.2027024897397496e-6,
"date": 1.11362589905184e-6,
"email": 1.6194632053156965e-6,
"person_name": 0.00005003785918233916,
"phone": 3.348592827023822e-6,
"price": 8.61142143548932e-6,
"unformatted_summary": 4.231451384839602e-6,
"unformatted_text": 1.1801864019389541e-7
},
"field_id": 7995220,
"location_type": "exact",
"text": "Foa & Son Insurance\n200 Broadhollow Rd.\nSuite 410",
"normalized": {
"text": "Foa & Son Insurance\n200 Broadhollow Rd.\nSuite 410",
"start": 99,
"end": 148,
"structured": null,
"formatted": "Foa & Son Insurance\n200 Broadhollow Rd.\nSuite 410",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "Foa & Son Insurance\n200 Broadhollow Rd.\nSuite 410",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "date",
"spans": [
{
"start": 576,
"end": 584,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:10",
"confidence": {
"address": 0.00036455324152484536,
"category": 0.0000363767976523377,
"date": 0.9873433113098145,
"email": 0.00009544380736770108,
"person_name": 0.00001597967275301926,
"phone": 0.000038136269722599536,
"price": 0.0001306438643950969,
"unformatted_summary": 0.00008597951818956062,
"unformatted_text": 8.400559636356775e-6
},
"field_id": null,
"location_type": "exact",
"text": "00008653"
},
{
"label": "date",
"spans": [
{
"start": 592,
"end": 608,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:11",
"confidence": {
"address": 0.00012650190910790116,
"category": 0.00003099365494563244,
"date": 0.9813215732574463,
"email": 0.00005042487464379519,
"person_name": 0.000016611968021607026,
"phone": 0.0000174010365299182,
"price": 0.000050738723075482994,
"unformatted_summary": 0.00004631881893146783,
"unformatted_text": 0.000011974704648309853
},
"field_id": null,
"location_type": "exact",
"text": "01/31/2023\n12:01"
},
{
"label": "date",
"spans": [
{
"start": 1541,
"end": 1542,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:12",
"confidence": {
"address": 0.000044722037273459136,
"category": 0.00004040792919113301,
"date": 0.8186466097831726,
"email": 0.00007520680082961917,
"person_name": 0.00006887058407301083,
"phone": 0.000020792600480490364,
"price": 0.00005794530807179399,
"unformatted_summary": 0.00013985457189846784,
"unformatted_text": 0.0000822865404188633
},
"field_id": null,
"location_type": "exact",
"text": "/"
},
{
"label": "date",
"spans": [
{
"start": 1544,
"end": 1545,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:13",
"confidence": {
"address": 0.00004290662400308065,
"category": 0.00004006177550763823,
"date": 0.9139937162399292,
"email": 0.00005447128933155909,
"person_name": 0.00008340422937180847,
"phone": 0.000020705274437204935,
"price": 0.00005548464469029568,
"unformatted_summary": 0.00012534222332760692,
"unformatted_text": 0.00006961033068364486
},
"field_id": null,
"location_type": "exact",
"text": "/"
},
{
"label": "date",
"spans": [
{
"start": 1570,
"end": 1571,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:14",
"confidence": {
"address": 0.00006266255513764918,
"category": 0.00004542710303212516,
"date": 0.5615590214729309,
"email": 0.00008850871381582692,
"person_name": 0.0000882821113918908,
"phone": 0.00003196585748810321,
"price": 0.0000670795634505339,
"unformatted_summary": 0.0001684528251644224,
"unformatted_text": 0.00011872409231727943
},
"field_id": null,
"location_type": "exact",
"text": "/"
},
{
"label": "date",
"spans": [
{
"start": 1573,
"end": 1574,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:15",
"confidence": {
"address": 0.00005027126826462336,
"category": 0.00004330481169745326,
"date": 0.6218208074569702,
"email": 0.00007894311420386657,
"person_name": 0.00009763655543792993,
"phone": 0.00003474970071692951,
"price": 0.000059954210883006454,
"unformatted_summary": 0.0001450037962058559,
"unformatted_text": 0.00010141448001377285
},
"field_id": null,
"location_type": "exact",
"text": "/"
},
{
"label": "phone",
"spans": [
{
"start": 2102,
"end": 2115,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:16",
"confidence": {
"address": 0.0000306712172459811,
"category": 3.347720394231146e-6,
"date": 0.000020692412363132462,
"email": 0.00005651906394632533,
"person_name": 1.383297671964101e-6,
"phone": 0.9990621209144592,
"price": 5.294285529089393e-6,
"unformatted_summary": 0.000013229709111328702,
"unformatted_text": 3.9697088141110726e-6
},
"field_id": 7995221,
"location_type": "exact",
"text": "(718)412-3735",
"normalized": {
"text": "(718)412-3735",
"start": 2102,
"end": 2115,
"structured": null,
"formatted": "(718)412-3735",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": "(718)412-3735",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "date",
"spans": [
{
"start": 2836,
"end": 2840,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:18",
"confidence": {
"address": 0.03648341819643974,
"category": 0.01195482723414898,
"date": 0.5263122916221619,
"email": 0.1261906772851944,
"person_name": 0.017154313623905182,
"phone": 0.003830098547041416,
"price": 0.008079418912529945,
"unformatted_summary": 0.17417486011981964,
"unformatted_text": 0.001641583745367825
},
"field_id": null,
"location_type": "exact",
"text": "1993"
},
{
"label": "date",
"spans": [
{
"start": 2841,
"end": 2845,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:19",
"confidence": {
"address": 0.019105147570371628,
"category": 0.006881310138851404,
"date": 0.2939073443412781,
"email": 0.23639194667339325,
"person_name": 0.01677708327770233,
"phone": 0.0028028765227645636,
"price": 0.014870932325720787,
"unformatted_summary": 0.15880778431892395,
"unformatted_text": 0.0016203002305701375
},
"field_id": null,
"location_type": "exact",
"text": "2015"
},
{
"label": "date",
"spans": [
{
"start": 2904,
"end": 2911,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:23",
"confidence": {
"address": 0.0009572902345098555,
"category": 0.00016393746773246676,
"date": 0.9769733548164368,
"email": 0.0002608768118079752,
"person_name": 0.0001941990340128541,
"phone": 0.00008987889304989949,
"price": 0.0003682275128085166,
"unformatted_summary": 0.002405420644208789,
"unformatted_text": 0.00007071337313391268
},
"field_id": null,
"location_type": "exact",
"text": "2016/03"
},
{
"label": "date",
"spans": [
{
"start": 2987,
"end": 2995,
"page_num": 1
}
],
"span_id": "58853:c:82569:idx:26",
"confidence": {
"address": 0.004952861461788416,
"category": 0.0017703992780297995,
"date": 0.8901403546333313,
"email": 0.009818282909691334,
"person_name": 0.00017090541950892657,
"phone": 0.002716575050726533,
"price": 0.02453135885298252,
"unformatted_summary": 0.03154641389846802,
"unformatted_text": 0.00020623582531698048
},
"field_id": null,
"location_type": "exact",
"text": "00008653"
},
{
"label": "date",
"spans": [
{
"start": 5546,
"end": 5549,
"page_num": 1
}
],
"span_id": "58853:c:82569:idx:27",
"confidence": {
"address": 0.001893811160698533,
"category": 0.00803117174655199,
"date": 0.6572811603546143,
"email": 0.0003453086537774652,
"person_name": 0.00006804701843066141,
"phone": 0.00019224119023419917,
"price": 0.00025187627761624753,
"unformatted_summary": 0.0020455566700547934,
"unformatted_text": 0.00010738393757492304
},
"field_id": null,
"location_type": "exact",
"text": "/03"
},
{
"label": "date",
"spans": [
{
"start": 5613,
"end": 5614,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:28",
"confidence": {
"address": 0.00648001441732049,
"category": 0.020356008782982826,
"date": 0.28883105516433716,
"email": 0.0017355771269649267,
"person_name": 0.00017949983885046095,
"phone": 0.010273197665810585,
"price": 0.015147627331316471,
"unformatted_summary": 0.010324742645025253,
"unformatted_text": 0.0002945756132248789
},
"field_id": null,
"location_type": "exact",
"text": "8"
},
{
"label": "date",
"spans": [
{
"start": 8183,
"end": 8184,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:44",
"confidence": {
"address": 0.0007401364855468273,
"category": 0.0012219185009598732,
"date": 0.4833044111728668,
"email": 0.0003442794841248542,
"person_name": 0.00021319468214642256,
"phone": 0.00019749805505853146,
"price": 0.00045992599916644394,
"unformatted_summary": 0.0005503249703906476,
"unformatted_text": 0.00034264434361830354
},
"field_id": null,
"location_type": "exact",
"text": "/"
},
{
"label": "price",
"spans": [
{
"start": 13812,
"end": 13819,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:106",
"confidence": {
"address": 0.001294693909585476,
"category": 0.0018095606938004494,
"date": 0.0008773988811299205,
"email": 0.005462753586471081,
"person_name": 0.0009206680697388947,
"phone": 0.0012792079942300916,
"price": 0.8576979637145996,
"unformatted_summary": 0.11505431681871414,
"unformatted_text": 0.0011274488642811775
},
"field_id": null,
"location_type": "exact",
"text": "($5,000"
},
{
"label": "price",
"spans": [
{
"start": 13852,
"end": 13868,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:108",
"confidence": {
"address": 0.0011187924537807703,
"category": 0.0016042873030528426,
"date": 0.0007768968935124576,
"email": 0.0035902808886021376,
"person_name": 0.0006450973451137543,
"phone": 0.0017575441161170602,
"price": 0.7985538840293884,
"unformatted_summary": 0.17817994952201843,
"unformatted_text": 0.0016642436385154724
},
"field_id": null,
"location_type": "exact",
"text": "dollars ($10,000"
},
{
"label": "date",
"spans": [
{
"start": 14621,
"end": 14622,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:117",
"confidence": {
"address": 0.012068018317222595,
"category": 0.014185793697834015,
"date": 0.3020309805870056,
"email": 0.0066792527213692665,
"person_name": 0.0003820281708613038,
"phone": 0.04809841886162758,
"price": 0.0708552747964859,
"unformatted_summary": 0.009304406121373177,
"unformatted_text": 0.00042649550596252084
},
"field_id": null,
"location_type": "exact",
"text": "8"
},
{
"label": "date",
"spans": [
{
"start": 15094,
"end": 15104,
"page_num": 4
}
],
"span_id": "58853:c:82569:idx:118",
"confidence": {
"address": 5.6217945711978246e-6,
"category": 2.8641570679610595e-6,
"date": 0.9999698400497437,
"email": 2.767414571280824e-6,
"person_name": 1.322657908531255e-6,
"phone": 3.50643631463754e-7,
"price": 1.8249869526698603e-6,
"unformatted_summary": 3.007315399372601e-6,
"unformatted_text": 1.0586878715912462e-6
},
"field_id": null,
"location_type": "exact",
"text": "01/31/2023"
},
{
"label": "date",
"spans": [
{
"start": 15484,
"end": 15492,
"page_num": 4
}
],
"span_id": "58853:c:82569:idx:119",
"confidence": {
"address": 0.0007587996660731733,
"category": 0.0002780076174531132,
"date": 0.9102561473846436,
"email": 0.00029080890817567706,
"person_name": 0.00004515391992754303,
"phone": 0.00005660890383296646,
"price": 0.00040795013774186373,
"unformatted_summary": 0.0019485527882352471,
"unformatted_text": 0.00012176659947726876
},
"field_id": null,
"location_type": "exact",
"text": "(2008/01"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15518,
"end": 15519,
"page_num": 4
}
],
"span_id": "58853:c:82569:idx:120",
"confidence": {
"address": 0.0005217284779064357,
"category": 0.007621488533914089,
"date": 0.0016302532749250531,
"email": 0.011488091200590134,
"person_name": 0.0013789411168545485,
"phone": 0.004580817185342312,
"price": 0.0010663437424227595,
"unformatted_summary": 0.7386950850486755,
"unformatted_text": 0.22117464244365692
},
"field_id": 7995214,
"location_type": "exact",
"text": ".",
"normalized": {
"text": ".",
"start": 15518,
"end": 15519,
"structured": null,
"formatted": ".",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": ".",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "date",
"spans": [
{
"start": 15615,
"end": 15623,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:123",
"confidence": {
"address": 0.003491086419671774,
"category": 0.0006570877740159631,
"date": 0.8696230053901672,
"email": 0.001501627964898944,
"person_name": 0.00015897255798336118,
"phone": 0.0003200637293048203,
"price": 0.006096852011978626,
"unformatted_summary": 0.0017446200363337994,
"unformatted_text": 0.00005332633372745477
},
"field_id": null,
"location_type": "exact",
"text": "00008653"
},
{
"label": "date",
"spans": [
{
"start": 15642,
"end": 15650,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:124",
"confidence": {
"address": 0.00006152135028969496,
"category": 0.000012305688869673759,
"date": 0.9359572529792786,
"email": 0.00003361549897817895,
"person_name": 0.000010201354598393664,
"phone": 2.690501332835993e-6,
"price": 0.00004335897756391205,
"unformatted_summary": 0.00005227925066719763,
"unformatted_text": 4.732282377517549e-6
},
"field_id": null,
"location_type": "exact",
"text": "01/06/20"
},
{
"label": "date",
"spans": [
{
"start": 15947,
"end": 15957,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:130",
"confidence": {
"address": 0.00003908149665221572,
"category": 0.000012417775906214956,
"date": 0.9495353102684021,
"email": 0.000021452717192005366,
"person_name": 4.6887839744158555e-6,
"phone": 9.558972351442208e-7,
"price": 0.000019228957171435468,
"unformatted_summary": 0.00002677262273209635,
"unformatted_text": 3.4209160730824806e-6
},
"field_id": null,
"location_type": "exact",
"text": "01/31/2023"
},
{
"label": "date",
"spans": [
{
"start": 17572,
"end": 17577,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:131",
"confidence": {
"address": 0.108571857213974,
"category": 0.009472360834479332,
"date": 0.4481777548789978,
"email": 0.13473746180534363,
"person_name": 0.007590836845338345,
"phone": 0.0028726966120302677,
"price": 0.006160487420856953,
"unformatted_summary": 0.11433275789022446,
"unformatted_text": 0.0016027623787522316
},
"field_id": null,
"location_type": "exact",
"text": "1991-"
},
{
"label": "date",
"spans": [
{
"start": 17716,
"end": 17723,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:135",
"confidence": {
"address": 0.00033505342435091734,
"category": 0.00011661746975732967,
"date": 0.9179937839508057,
"email": 0.00006565932562807575,
"person_name": 0.000027070620490121655,
"phone": 0.000013040739759162534,
"price": 0.00008840553346090019,
"unformatted_summary": 0.001900846604257822,
"unformatted_text": 0.00004447987521416508
},
"field_id": null,
"location_type": "exact",
"text": "2017/11"
},
{
"label": "date",
"spans": [
{
"start": 20570,
"end": 20578,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:161",
"confidence": {
"address": 0.008713374845683575,
"category": 0.0032346646767109632,
"date": 0.5681430697441101,
"email": 0.009586668573319912,
"person_name": 0.00045542727457359433,
"phone": 0.0047550322487950325,
"price": 0.11921656131744385,
"unformatted_summary": 0.04457113891839981,
"unformatted_text": 0.0005374241154640913
},
"field_id": null,
"location_type": "exact",
"text": "00008653"
},
{
"label": "price",
"spans": [
{
"start": 20699,
"end": 20700,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:163",
"confidence": {
"address": 0.00013712297368329018,
"category": 0.003906137775629759,
"date": 0.010089172050356865,
"email": 0.00009255015174858272,
"person_name": 0.0002734683221206069,
"phone": 0.00016480730846524239,
"price": 0.9304735660552979,
"unformatted_summary": 0.003385229269042611,
"unformatted_text": 0.0005558371194638312
},
"field_id": null,
"location_type": "exact",
"text": "$"
},
{
"label": "date",
"spans": [
{
"start": 21882,
"end": 21883,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:177",
"confidence": {
"address": 0.0003252795431762934,
"category": 0.00011627969797700644,
"date": 0.6808159947395325,
"email": 0.00008391687151743099,
"person_name": 0.00009397669782629237,
"phone": 0.000018273894966114312,
"price": 0.0003225906693842262,
"unformatted_summary": 0.0014360769418999553,
"unformatted_text": 0.00015946992789395154
},
"field_id": null,
"location_type": "exact",
"text": "/"
},
{
"label": "price",
"spans": [
{
"start": 21952,
"end": 21960,
"page_num": 8
}
],
"span_id": "58853:c:82569:idx:178",
"confidence": {
"address": 0.0085436487570405,
"category": 0.02046012692153454,
"date": 0.15307490527629852,
"email": 0.0169838834553957,
"person_name": 0.000393713271478191,
"phone": 0.04566408321261406,
"price": 0.5102507472038269,
"unformatted_summary": 0.08264723420143127,
"unformatted_text": 0.0014254733687266707
},
"field_id": null,
"location_type": "exact",
"text": "00008653"
},
{
"label": "date",
"spans": [
{
"start": 23312,
"end": 23313,
"page_num": 8
}
],
"span_id": "58853:c:82569:idx:186",
"confidence": {
"address": 0.003377993358299136,
"category": 0.002281274413689971,
"date": 0.3199858069419861,
"email": 0.0005564970197156072,
"person_name": 0.0015409986954182386,
"phone": 0.0001386245567118749,
"price": 0.001486176042817533,
"unformatted_summary": 0.015855493023991585,
"unformatted_text": 0.006807925645262003
},
"field_id": null,
"location_type": "exact",
"text": "/"
},
{
"label": "price",
"spans": [
{
"start": 23353,
"end": 23354,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:187",
"confidence": {
"address": 0.01810355670750141,
"category": 0.02844267711043358,
"date": 0.18030166625976562,
"email": 0.013660278171300888,
"person_name": 0.0006530933897010982,
"phone": 0.052199266850948334,
"price": 0.3057875633239746,
"unformatted_summary": 0.05972633510828018,
"unformatted_text": 0.002463545650243759
},
"field_id": null,
"location_type": "exact",
"text": "8"
},
{
"label": "price",
"spans": [
{
"start": 27160,
"end": 27243,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:214",
"confidence": {
"address": 0.002220383146777749,
"category": 0.002734970534220338,
"date": 0.0013400762109085917,
"email": 0.003714845050126314,
"person_name": 0.0006596801686100662,
"phone": 0.0013978087808936834,
"price": 0.8168478012084961,
"unformatted_summary": 0.14352384209632874,
"unformatted_text": 0.0012507147621363401
},
"field_id": null,
"location_type": "exact",
"text": "than five thousand dollars ($5,000) and not more than ten thousand dollars ($10,000"
},
{
"label": "date",
"spans": [
{
"start": 27545,
"end": 27552,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:226",
"confidence": {
"address": 0.0014885608106851578,
"category": 0.0005432404577732086,
"date": 0.9934186935424805,
"email": 0.0002756024769041687,
"person_name": 0.00016335926193278283,
"phone": 9.96109338302631e-6,
"price": 0.00015657370386179537,
"unformatted_summary": 0.0015874855453148484,
"unformatted_text": 0.00022459182946477085
},
"field_id": null,
"location_type": "exact",
"text": "2017/11"
},
{
"label": "date",
"spans": [
{
"start": 27586,
"end": 27594,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:227",
"confidence": {
"address": 0.00981815718114376,
"category": 0.009857604280114174,
"date": 0.5364071130752563,
"email": 0.009743506088852882,
"person_name": 0.0010220517870038748,
"phone": 0.014943057671189308,
"price": 0.1737774908542633,
"unformatted_summary": 0.06215653568506241,
"unformatted_text": 0.0011914949864149094
},
"field_id": null,
"location_type": "exact",
"text": "00008653"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 29034,
"end": 29035,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:267",
"confidence": {
"address": 0.0006649813149124384,
"category": 0.0053044273518025875,
"date": 0.00032998426468111575,
"email": 0.003679543035104871,
"person_name": 0.0014256645226851106,
"phone": 0.0036445637233555317,
"price": 0.0007886011735536158,
"unformatted_summary": 0.28109580278396606,
"unformatted_text": 0.6932814717292786
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"normalized": {
"text": ".",
"start": 29034,
"end": 29035,
"structured": null,
"formatted": ".",
"status": "SUCCESS",
"comparison_type": "string",
"comparison_value": ".",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "date",
"spans": [
{
"start": 29499,
"end": 29506,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:274",
"confidence": {
"address": 0.00003435741746216081,
"category": 0.000039014554204186425,
"date": 0.9641520977020264,
"email": 0.000015082318896020297,
"person_name": 6.754744390491396e-6,
"phone": 3.6127123621554347e-6,
"price": 0.00002126066101482138,
"unformatted_summary": 0.0000880081788636744,
"unformatted_text": 4.4555304157256614e-6
},
"field_id": null,
"location_type": "exact",
"text": "2017/11"
}
]
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"18584": [
{
"label": "date",
"spans": [
{
"start": 81,
"end": 89,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:0",
"confidence": {
"address": 0.0008382097003050148,
"category": 0.00032637707772664726,
"date": 0.8401451110839844,
"email": 0.00008215107664000243,
"person_name": 0.00006586373638128862,
"phone": 0.000045243665226735175,
"price": 0.00016234298527706414,
"unformatted_summary": 0.0003899947623722255,
"unformatted_text": 4.057224941789173e-6
},
"field_id": 7995216,
"location_type": "exact",
"text": "01/06/20",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 1,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "address",
"spans": [
{
"start": 99,
"end": 148,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:1",
"confidence": {
"address": 0.9985221028327942,
"category": 0.000024526183551643044,
"date": 4.003620233561378e-6,
"email": 0.00002633540498209186,
"person_name": 0.00029015084146521986,
"phone": 0.00007712938531767577,
"price": 0.000039583912439411506,
"unformatted_summary": 0.00001727144990582019,
"unformatted_text": 5.326662630977808e-7
},
"field_id": 7995220,
"location_type": "exact",
"text": "Foa & Son Insurance\n200 Broadhollow Rd.\nSuite 410",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 222,
"end": 239,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:2",
"confidence": {
"address": 0.9899193644523621,
"category": 0.00012501681339927018,
"date": 6.538491561514093e-6,
"email": 0.00021048681810498238,
"person_name": 0.00007454364094883204,
"phone": 0.0002323944790987298,
"price": 0.00010675330850062892,
"unformatted_summary": 0.00006395464151864871,
"unformatted_text": 4.195738711132435e-6
},
"field_id": 7995220,
"location_type": "exact",
"text": "Melville\nNY 11747",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 248,
"end": 262,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:3",
"confidence": {
"address": 0.0012621395289897919,
"category": 0.0004784419434145093,
"date": 0.00019498076289892197,
"email": 0.8043937683105469,
"person_name": 0.163276806473732,
"phone": 0.00021699978969991207,
"price": 0.0012277538189664483,
"unformatted_summary": 0.00032026803819462657,
"unformatted_text": 0.0004162769764661789
},
"field_id": 7995218,
"location_type": "exact",
"text": "Pete Carrucciu",
"groupings": []
},
{
"label": "phone",
"spans": [
{
"start": 321,
"end": 333,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:5",
"confidence": {
"address": 0.006012810859829187,
"category": 0.000038913243770366535,
"date": 0.00011566126340767369,
"email": 0.0185456033796072,
"person_name": 0.00032934933551587164,
"phone": 0.9101330637931824,
"price": 0.0012280774535611272,
"unformatted_summary": 0.002448165090754628,
"unformatted_text": 0.0000998079776763916
},
"field_id": 7995221,
"location_type": "exact",
"text": "(516) 228-12",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 352,
"end": 377,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:6",
"confidence": {
"address": 0.0008246891666203737,
"category": 0.0005607644561678171,
"date": 0.00003108731107204221,
"email": 0.9779796600341797,
"person_name": 0.0028690265025943518,
"phone": 0.00016703765140846372,
"price": 0.00022742677538190037,
"unformatted_summary": 0.0063768657855689526,
"unformatted_text": 0.002331895288079977
},
"field_id": 7995218,
"location_type": "exact",
"text": "[email protected]",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 580,
"end": 581,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:7",
"confidence": {
"address": 0.0009340394753962755,
"category": 0.00034081508056260645,
"date": 0.2775688171386719,
"email": 0.0005426135612651706,
"person_name": 0.00016624201089143753,
"phone": 0.0002776986511889845,
"price": 0.0016530553111806512,
"unformatted_summary": 0.00040769067709334195,
"unformatted_text": 0.000037284269637893885
},
"field_id": 7995216,
"location_type": "exact",
"text": "8",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 8,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 592,
"end": 602,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:8",
"confidence": {
"address": 0.00018351097241975367,
"category": 0.00008847226126817986,
"date": 0.9235013127326965,
"email": 0.00031169955036602914,
"person_name": 0.00003231704977224581,
"phone": 0.00003862439552904107,
"price": 0.0001107881180359982,
"unformatted_summary": 0.00012774991046171635,
"unformatted_text": 0.000016931584468693472
},
"field_id": 7995216,
"location_type": "exact",
"text": "01/31/2023",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 8,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 605,
"end": 606,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:9",
"confidence": {
"address": 0.0003547708038240671,
"category": 0.0003145014343317598,
"date": 0.7196521759033203,
"email": 0.000938755925744772,
"person_name": 0.0001704288151813671,
"phone": 0.0002745642850641161,
"price": 0.0008430376183241606,
"unformatted_summary": 0.0003736621292773634,
"unformatted_text": 0.0000674287584843114
},
"field_id": 7995216,
"location_type": "exact",
"text": ":",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 8,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 1541,
"end": 1542,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:10",
"confidence": {
"address": 0.00007842819468351081,
"category": 0.00007922684744698927,
"date": 0.5415936708450317,
"email": 0.00011377851478755474,
"person_name": 0.000044501954107545316,
"phone": 0.000029641070796060376,
"price": 0.00013972805754747242,
"unformatted_summary": 0.00026661780430004,
"unformatted_text": 0.00008118490222841501
},
"field_id": 7995216,
"location_type": "exact",
"text": "/",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 9,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 1544,
"end": 1545,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:11",
"confidence": {
"address": 0.00006713578477501869,
"category": 0.00006356288940878585,
"date": 0.7238661646842957,
"email": 0.00009656754991738126,
"person_name": 0.000049412268708692864,
"phone": 0.00002749199848040007,
"price": 0.00012158205936430022,
"unformatted_summary": 0.00022378745779860765,
"unformatted_text": 0.0000641161750536412
},
"field_id": 7995216,
"location_type": "exact",
"text": "/",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 9,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "address",
"spans": [
{
"start": 2006,
"end": 2026,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:12",
"confidence": {
"address": 0.7823039293289185,
"category": 0.00010945543181151152,
"date": 0.0000381905265385285,
"email": 0.0001567845611134544,
"person_name": 0.0006778376409783959,
"phone": 0.0004701801226474345,
"price": 0.000479851383715868,
"unformatted_summary": 0.00018783568521030247,
"unformatted_text": 0.000013998384929436725
},
"field_id": 7995220,
"location_type": "exact",
"text": "450 West 14th Street",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 2028,
"end": 2037,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:13",
"confidence": {
"address": 0.6224239468574524,
"category": 0.0001418402389390394,
"date": 0.00004037813778268173,
"email": 0.00014167749031912535,
"person_name": 0.0005470755859278142,
"phone": 0.0005404037074185908,
"price": 0.0003932934196200222,
"unformatted_summary": 0.00015986217476893216,
"unformatted_text": 0.000011508406714710873
},
"field_id": 7995220,
"location_type": "exact",
"text": "8th Floor",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 2074,
"end": 2077,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:14",
"confidence": {
"address": 0.44168034195899963,
"category": 0.0017019055085256696,
"date": 0.011845335364341736,
"email": 0.011615515686571598,
"person_name": 0.003551841713488102,
"phone": 0.010609667748212814,
"price": 0.005451730918139219,
"unformatted_summary": 0.0027266182005405426,
"unformatted_text": 0.00030060592689551413
},
"field_id": 7995220,
"location_type": "exact",
"text": "134",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 2079,
"end": 2081,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:15",
"confidence": {
"address": 0.4880373179912567,
"category": 0.0011954839574173093,
"date": 0.011774847283959389,
"email": 0.007149219512939453,
"person_name": 0.0020780034828931093,
"phone": 0.010580705478787422,
"price": 0.005864657927304506,
"unformatted_summary": 0.0031031211838126183,
"unformatted_text": 0.00018770393216982484
},
"field_id": 7995220,
"location_type": "exact",
"text": "96",
"groupings": []
},
{
"label": "phone",
"spans": [
{
"start": 2102,
"end": 2115,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:16",
"confidence": {
"address": 0.000022761514628655277,
"category": 1.6268662648144527e-6,
"date": 0.000012220101780258119,
"email": 0.00008080448606051505,
"person_name": 1.8122258325092844e-6,
"phone": 0.9998504519462585,
"price": 3.7034706110716797e-6,
"unformatted_summary": 3.934765572921606e-6,
"unformatted_text": 2.0800491711270297e-6
},
"field_id": 7995221,
"location_type": "exact",
"text": "(718)412-3735",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 2836,
"end": 2841,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:17",
"confidence": {
"address": 0.0672197937965393,
"category": 0.008249814622104168,
"date": 0.47318902611732483,
"email": 0.16597187519073486,
"person_name": 0.007995862513780594,
"phone": 0.002560828346759081,
"price": 0.016048626974225044,
"unformatted_summary": 0.14844085276126862,
"unformatted_text": 0.0012005167081952095
},
"field_id": 7995216,
"location_type": "exact",
"text": "1993-",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 12,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "email",
"spans": [
{
"start": 2841,
"end": 2863,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:18",
"confidence": {
"address": 0.034429360181093216,
"category": 0.003997038118541241,
"date": 0.044632378965616226,
"email": 0.49514126777648926,
"person_name": 0.011547581292688847,
"phone": 0.0015974323032423854,
"price": 0.01615247316658497,
"unformatted_summary": 0.15810275077819824,
"unformatted_text": 0.0021072353702038527
},
"field_id": 7995218,
"location_type": "exact",
"text": "2015 ACORD CORPORATION",
"groupings": []
},
{
"label": "email",
"spans": [
{
"start": 2863,
"end": 2864,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:19",
"confidence": {
"address": 0.0007083663367666304,
"category": 0.011992447078227997,
"date": 0.0007753573008812964,
"email": 0.4321928322315216,
"person_name": 0.0012889641802757978,
"phone": 0.0007695112726651132,
"price": 0.001609585015103221,
"unformatted_summary": 0.41995808482170105,
"unformatted_text": 0.1166323870420456
},
"field_id": 7995218,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2869,
"end": 2885,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:20",
"confidence": {
"address": 0.04918576404452324,
"category": 0.025526827201247215,
"date": 0.06036434695124626,
"email": 0.12839139997959137,
"person_name": 0.011937239207327366,
"phone": 0.007726868614554405,
"price": 0.03369471803307533,
"unformatted_summary": 0.4739355146884918,
"unformatted_text": 0.041804831475019455
},
"field_id": 7995214,
"location_type": "exact",
"text": "rights reserved.",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 2904,
"end": 2911,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:21",
"confidence": {
"address": 0.0032155655790120363,
"category": 0.0006164044025354087,
"date": 0.9671136736869812,
"email": 0.0004434429865796119,
"person_name": 0.00014429405564442277,
"phone": 0.00006485301855718717,
"price": 0.0011565015884116292,
"unformatted_summary": 0.0037730138283222914,
"unformatted_text": 0.0000322670784953516
},
"field_id": 7995216,
"location_type": "exact",
"text": "2016/03",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 12,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2928,
"end": 2960,
"page_num": 0
}
],
"span_id": "58853:c:82567:idx:22",
"confidence": {
"address": 0.000887981615960598,
"category": 0.0056887525133788586,
"date": 0.0037047266960144043,
"email": 0.027265384793281555,
"person_name": 0.0026360449846833944,
"phone": 0.00034803643939085305,
"price": 0.010188215412199497,
"unformatted_summary": 0.518300473690033,
"unformatted_text": 0.0008893802878446877
},
"field_id": 7995214,
"location_type": "exact",
"text": "and logo are registered marks of",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 2987,
"end": 2991,
"page_num": 1
}
],
"span_id": "58853:c:82567:idx:23",
"confidence": {
"address": 0.02871905453503132,
"category": 0.001847638632170856,
"date": 0.6789345145225525,
"email": 0.008334034122526646,
"person_name": 0.0007483154768124223,
"phone": 0.0035563122946769,
"price": 0.05937172472476959,
"unformatted_summary": 0.020784271880984306,
"unformatted_text": 0.0009412079816684127
},
"field_id": 7995216,
"location_type": "exact",
"text": "0000",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 14,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 2992,
"end": 2995,
"page_num": 1
}
],
"span_id": "58853:c:82567:idx:24",
"confidence": {
"address": 0.009741030633449554,
"category": 0.0024306613486260176,
"date": 0.35389432311058044,
"email": 0.005842252634465694,
"person_name": 0.00049021519953385,
"phone": 0.0010685739107429981,
"price": 0.07747026532888412,
"unformatted_summary": 0.07543587684631348,
"unformatted_text": 0.00036543270107358694
},
"field_id": 7995216,
"location_type": "exact",
"text": "653",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 14,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 4986,
"end": 4995,
"page_num": 1
}
],
"span_id": "58853:c:82567:idx:25",
"confidence": {
"address": 0.00005488767783390358,
"category": 0.00006569595279870555,
"date": 0.00006692426541121677,
"email": 0.00011049781460314989,
"person_name": 0.000010779695912788156,
"phone": 0.000029827342586941086,
"price": 0.00019205095304641873,
"unformatted_summary": 0.38080620765686035,
"unformatted_text": 0.000610150455031544
},
"field_id": 7995214,
"location_type": "exact",
"text": "necessary",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 5541,
"end": 5542,
"page_num": 1
}
],
"span_id": "58853:c:82567:idx:26",
"confidence": {
"address": 0.01310561690479517,
"category": 0.04131283238530159,
"date": 0.4389802813529968,
"email": 0.0025217917282134295,
"person_name": 0.002045327564701438,
"phone": 0.0018481379374861717,
"price": 0.0012585525400936604,
"unformatted_summary": 0.040687233209609985,
"unformatted_text": 0.0012155203148722649
},
"field_id": 7995216,
"location_type": "exact",
"text": "(",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 16,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 5546,
"end": 5549,
"page_num": 1
}
],
"span_id": "58853:c:82567:idx:27",
"confidence": {
"address": 0.011826829984784126,
"category": 0.02259618416428566,
"date": 0.662680983543396,
"email": 0.0034324778243899345,
"person_name": 0.0008048323797993362,
"phone": 0.0005874282796867192,
"price": 0.0007442974019795656,
"unformatted_summary": 0.024562515318393707,
"unformatted_text": 0.0004906172980554402
},
"field_id": 7995216,
"location_type": "exact",
"text": "/03",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 16,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6009,
"end": 6011,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:28",
"confidence": {
"address": 0.0010566229466348886,
"category": 0.000411073473514989,
"date": 0.0005405768170021474,
"email": 0.00091239606263116,
"person_name": 0.000560056185349822,
"phone": 0.0008261195616796613,
"price": 0.000409708300139755,
"unformatted_summary": 0.34172579646110535,
"unformatted_text": 0.018588446080684662
},
"field_id": 7995214,
"location_type": "exact",
"text": "BL",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6019,
"end": 6021,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:29",
"confidence": {
"address": 0.0021352043841034174,
"category": 0.0002728644758462906,
"date": 0.0006082837353460491,
"email": 0.002122406382113695,
"person_name": 0.0011846906272694468,
"phone": 0.001424437970854342,
"price": 0.0007897281320765615,
"unformatted_summary": 0.340152382850647,
"unformatted_text": 0.02639917843043804
},
"field_id": 7995214,
"location_type": "exact",
"text": "OS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6226,
"end": 6293,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:30",
"confidence": {
"address": 0.004453097935765982,
"category": 0.0005204835324548185,
"date": 0.0010770059889182448,
"email": 0.0006780705880373716,
"person_name": 0.000171451669302769,
"phone": 0.0007111807935871184,
"price": 0.0036947934422641993,
"unformatted_summary": 0.5967555642127991,
"unformatted_text": 0.014481473714113235
},
"field_id": 7995214,
"location_type": "exact",
"text": "ED DURING THE PRIOR THREE (3) YEARS FOR ANY PREMISES OR\nOPERATIONS?",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6315,
"end": 6344,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:31",
"confidence": {
"address": 0.000661974772810936,
"category": 0.0008152490481734276,
"date": 0.0004215243679936975,
"email": 0.0012410402996465564,
"person_name": 0.0002183809847338125,
"phone": 0.0004750407242681831,
"price": 0.0018922562012448907,
"unformatted_summary": 0.7292879223823547,
"unformatted_text": 0.004030377138406038
},
"field_id": 7995214,
"location_type": "exact",
"text": "- Do not answer this question",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6360,
"end": 6362,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:32",
"confidence": {
"address": 0.006231975741684437,
"category": 0.0016391085227951407,
"date": 0.0006090976530686021,
"email": 0.0032722153700888157,
"person_name": 0.0009511073003523052,
"phone": 0.0004222702991683036,
"price": 0.0029032716993242502,
"unformatted_summary": 0.3690045475959778,
"unformatted_text": 0.11267061531543732
},
"field_id": 7995214,
"location_type": "exact",
"text": "AG",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6369,
"end": 6375,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:33",
"confidence": {
"address": 0.015229333192110062,
"category": 0.0011914242058992386,
"date": 0.000440045609138906,
"email": 0.0022204448468983173,
"person_name": 0.0006920068990439177,
"phone": 0.0010282726725563407,
"price": 0.0023993724025785923,
"unformatted_summary": 0.41584181785583496,
"unformatted_text": 0.02908960171043873
},
"field_id": 7995214,
"location_type": "exact",
"text": "LONGER",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6378,
"end": 6392,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:34",
"confidence": {
"address": 0.011585281230509281,
"category": 0.0022281729616224766,
"date": 0.0006390763446688652,
"email": 0.003897828282788396,
"person_name": 0.0018768899608403444,
"phone": 0.0009247080888599157,
"price": 0.0027105107437819242,
"unformatted_summary": 0.35691142082214355,
"unformatted_text": 0.034155022352933884
},
"field_id": 7995214,
"location_type": "exact",
"text": "PRESENTS CARRI",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6395,
"end": 6396,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:35",
"confidence": {
"address": 0.01859821006655693,
"category": 0.0007604892016388476,
"date": 0.00037372333463281393,
"email": 0.002451736479997635,
"person_name": 0.0007415520376525819,
"phone": 0.0015830497723072767,
"price": 0.0022883296478539705,
"unformatted_summary": 0.40440160036087036,
"unformatted_text": 0.028061000630259514
},
"field_id": 7995214,
"location_type": "exact",
"text": "N",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6407,
"end": 6409,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:36",
"confidence": {
"address": 0.011666588485240936,
"category": 0.0006795330555178225,
"date": 0.0004178800154477358,
"email": 0.0014924563001841307,
"person_name": 0.000930256035644561,
"phone": 0.0007850886322557926,
"price": 0.0013382466277107596,
"unformatted_summary": 0.3347893953323364,
"unformatted_text": 0.030037708580493927
},
"field_id": 7995214,
"location_type": "exact",
"text": "UN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6412,
"end": 6416,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:37",
"confidence": {
"address": 0.005031384993344545,
"category": 0.0003133889113087207,
"date": 0.00021384972205851227,
"email": 0.0008477959781885147,
"person_name": 0.0006871026707813144,
"phone": 0.0006776864174753428,
"price": 0.0009081696625798941,
"unformatted_summary": 0.4880782961845398,
"unformatted_text": 0.03520461171865463
},
"field_id": 7995214,
"location_type": "exact",
"text": "WRIT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6474,
"end": 6477,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:38",
"confidence": {
"address": 0.00747583108022809,
"category": 0.003001213539391756,
"date": 0.0018801757832989097,
"email": 0.001144777750596404,
"person_name": 0.0007531042210757732,
"phone": 0.000609156908467412,
"price": 0.0006673966418020427,
"unformatted_summary": 0.3284117579460144,
"unformatted_text": 0.039499472826719284
},
"field_id": 7995214,
"location_type": "exact",
"text": "CLA",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6481,
"end": 6526,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:39",
"confidence": {
"address": 0.0040251947939395905,
"category": 0.0011061921250075102,
"date": 0.00205939426086843,
"email": 0.000567325740121305,
"person_name": 0.0004762466996908188,
"phone": 0.0005264028441160917,
"price": 0.0008675307617522776,
"unformatted_summary": 0.47148218750953674,
"unformatted_text": 0.045020941644907
},
"field_id": 7995214,
"location_type": "exact",
"text": "RELATING TO SEXUAL ABUSE OR MOLESTATION ALLEG",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6534,
"end": 6543,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:40",
"confidence": {
"address": 0.0009785196743905544,
"category": 0.0004928935086354613,
"date": 0.0016379050211980939,
"email": 0.0004386064247228205,
"person_name": 0.0005526877357624471,
"phone": 0.0002246621879749,
"price": 0.0007691425271332264,
"unformatted_summary": 0.5693836212158203,
"unformatted_text": 0.07313660532236099
},
"field_id": 7995214,
"location_type": "exact",
"text": "DISCRIMIN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6549,
"end": 6568,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:41",
"confidence": {
"address": 0.0012531055836007,
"category": 0.000367691129213199,
"date": 0.0007612528279423714,
"email": 0.0004456221649888903,
"person_name": 0.0002891011245083064,
"phone": 0.00015134402201510966,
"price": 0.0011162660084664822,
"unformatted_summary": 0.658820390701294,
"unformatted_text": 0.02787628397345543
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR NEGLIGENT HIRING",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6575,
"end": 6592,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:42",
"confidence": {
"address": 0.016314346343278885,
"category": 0.0004995887284167111,
"date": 0.006983242928981781,
"email": 0.0019783310126513243,
"person_name": 0.0008720139157958329,
"phone": 0.0004430921981111169,
"price": 0.0037794678937643766,
"unformatted_summary": 0.6185221672058105,
"unformatted_text": 0.04121829569339752
},
"field_id": 7995214,
"location_type": "exact",
"text": "DURING THE LAST F",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6596,
"end": 6600,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:43",
"confidence": {
"address": 0.005577831994742155,
"category": 0.00026478079962544143,
"date": 0.01282656192779541,
"email": 0.0015320078236982226,
"person_name": 0.00038995567592792213,
"phone": 0.0002384951658314094,
"price": 0.004730451386421919,
"unformatted_summary": 0.38693487644195557,
"unformatted_text": 0.0030997502617537975
},
"field_id": 7995214,
"location_type": "exact",
"text": "YEAR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6615,
"end": 6632,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:44",
"confidence": {
"address": 0.0031218831427395344,
"category": 0.0003328009624965489,
"date": 0.0018130673561245203,
"email": 0.001275833579711616,
"person_name": 0.0004618226666934788,
"phone": 0.00019575690384954214,
"price": 0.001696357037872076,
"unformatted_summary": 0.7103838920593262,
"unformatted_text": 0.08403206616640091
},
"field_id": 7995214,
"location_type": "exact",
"text": "HAS ANY APPLICANT",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 6635,
"end": 6637,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:45",
"confidence": {
"address": 0.0031481001060456038,
"category": 0.000372469425201416,
"date": 0.0011803145753219724,
"email": 0.00018945662304759026,
"person_name": 0.00016935168241616338,
"phone": 0.00006811383354943246,
"price": 0.0005546560860238969,
"unformatted_summary": 0.29257485270500183,
"unformatted_text": 0.3090960681438446
},
"field_id": 7995213,
"location_type": "exact",
"text": "EN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6638,
"end": 6794,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:46",
"confidence": {
"address": 0.0025323545560240746,
"category": 0.00049386773025617,
"date": 0.0016822704346850514,
"email": 0.0006080641178414226,
"person_name": 0.0005364364478737116,
"phone": 0.0001753433607518673,
"price": 0.0015147073427215219,
"unformatted_summary": 0.6927573084831238,
"unformatted_text": 0.1278396099805832
},
"field_id": 7995214,
"location_type": "exact",
"text": "INDICTED FOR OR CONVICTED OF ANY DEGREE OF THE CRIME OF FRAUD,\nBRIBERY, ARSON OR ANY OTHER ARSON-RELATED CRIME IN CONNECTION WITH THIS OR ANY OTHER PROPERTY",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6799,
"end": 7012,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:47",
"confidence": {
"address": 0.005596667528152466,
"category": 0.0017679448937997222,
"date": 0.0019908263348042965,
"email": 0.008843719959259033,
"person_name": 0.0027803853154182434,
"phone": 0.0009134003194049001,
"price": 0.02457277476787567,
"unformatted_summary": 0.7560306191444397,
"unformatted_text": 0.012959780171513557
},
"field_id": 7995214,
"location_type": "exact",
"text": "In RI, this question must be answered by any applicant for property insurance. Failure to disclose the existence of an arson conviction is a misdemeanor punishable\nby a sentence of up to one year of imprisonment).",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7598,
"end": 7604,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:48",
"confidence": {
"address": 0.0004898887127637863,
"category": 0.0005804803804494441,
"date": 0.0002870430762413889,
"email": 0.0002506233286112547,
"person_name": 0.000054255706345429644,
"phone": 0.00012142305786255747,
"price": 0.0009217917104251683,
"unformatted_summary": 0.554941713809967,
"unformatted_text": 0.002177113899961114
},
"field_id": 7995214,
"location_type": "exact",
"text": "attach",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7615,
"end": 7618,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:49",
"confidence": {
"address": 0.0016669014003127813,
"category": 0.0011898636585101485,
"date": 0.00036881639971397817,
"email": 0.00031597603810951114,
"person_name": 0.000181932162377052,
"phone": 0.0001757920254021883,
"price": 0.0010275437962263823,
"unformatted_summary": 0.413630872964859,
"unformatted_text": 0.003445297246798873
},
"field_id": 7995214,
"location_type": "exact",
"text": "for",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7638,
"end": 7642,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:50",
"confidence": {
"address": 0.00210567913018167,
"category": 0.000841481436509639,
"date": 0.0004165280843153596,
"email": 0.0004950369475409389,
"person_name": 0.000158859504153952,
"phone": 0.0002895047655329108,
"price": 0.0010823870543390512,
"unformatted_summary": 0.45947545766830444,
"unformatted_text": 0.0033045837190002203
},
"field_id": 7995214,
"location_type": "exact",
"text": "and/",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7774,
"end": 7787,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:51",
"confidence": {
"address": 0.0014778361655771732,
"category": 0.00018327221914660186,
"date": 0.0007769098156131804,
"email": 0.0007156520150601864,
"person_name": 0.00022505094239022583,
"phone": 0.00015407650789711624,
"price": 0.0009962365729734302,
"unformatted_summary": 0.39701008796691895,
"unformatted_text": 0.035189270973205566
},
"field_id": 7995214,
"location_type": "exact",
"text": "APPLICANT OWN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7790,
"end": 7795,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:52",
"confidence": {
"address": 0.0015348345041275024,
"category": 0.00013811430835630745,
"date": 0.0007544723339378834,
"email": 0.0003839896235149354,
"person_name": 0.0002232260740129277,
"phone": 0.0001804593048291281,
"price": 0.0009636431350372732,
"unformatted_summary": 0.4151647090911865,
"unformatted_text": 0.04461009055376053
},
"field_id": 7995214,
"location_type": "exact",
"text": "LEASE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7798,
"end": 7802,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:53",
"confidence": {
"address": 0.0009724442497827113,
"category": 0.00011980852286797017,
"date": 0.0006547537632286549,
"email": 0.0003163960645906627,
"person_name": 0.00017354011652059853,
"phone": 0.0002413339534541592,
"price": 0.0008532694773748517,
"unformatted_summary": 0.35180574655532837,
"unformatted_text": 0.020270192995667458
},
"field_id": 7995214,
"location_type": "exact",
"text": "OPER",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7806,
"end": 7809,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:54",
"confidence": {
"address": 0.002081356942653656,
"category": 0.0001141886314144358,
"date": 0.0006517378496937454,
"email": 0.0003616028116084635,
"person_name": 0.00014566222671419382,
"phone": 0.0001387714728480205,
"price": 0.001045582233928144,
"unformatted_summary": 0.35717928409576416,
"unformatted_text": 0.025597527623176575
},
"field_id": 7995214,
"location_type": "exact",
"text": "ANY",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7829,
"end": 7841,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:55",
"confidence": {
"address": 0.00046627101255580783,
"category": 0.0001181091065518558,
"date": 0.00044555432396009564,
"email": 0.0005135734681971371,
"person_name": 0.0002636743593029678,
"phone": 0.00008244080527219921,
"price": 0.0006415460957214236,
"unformatted_summary": 0.6103142499923706,
"unformatted_text": 0.019836248829960823
},
"field_id": 7995214,
"location_type": "exact",
"text": "describe use",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7864,
"end": 7886,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:56",
"confidence": {
"address": 0.0012662537628784776,
"category": 0.00006017273699399084,
"date": 0.0002526393800508231,
"email": 0.00047001102939248085,
"person_name": 0.0001477740879636258,
"phone": 0.00005646375575452112,
"price": 0.0007131127058528364,
"unformatted_summary": 0.5241411924362183,
"unformatted_text": 0.024708446115255356
},
"field_id": 7995214,
"location_type": "exact",
"text": "HIRE OTHERS TO OPERATE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7903,
"end": 7918,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:57",
"confidence": {
"address": 0.0005060727708041668,
"category": 0.00009447514457860962,
"date": 0.0003460654115770012,
"email": 0.0005862356047146022,
"person_name": 0.0002565832401160151,
"phone": 0.00007143930270103738,
"price": 0.0005966879543848336,
"unformatted_summary": 0.5804625749588013,
"unformatted_text": 0.01853371411561966
},
"field_id": 7995214,
"location_type": "exact",
"text": "\", describe use",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 7966,
"end": 7978,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:58",
"confidence": {
"address": 0.002951299538835883,
"category": 0.004592071287333965,
"date": 0.0007106203120201826,
"email": 0.003674082225188613,
"person_name": 0.00029345968505367637,
"phone": 0.0003865943872369826,
"price": 0.002057194709777832,
"unformatted_summary": 0.4641251564025879,
"unformatted_text": 0.0028872371185570955
},
"field_id": 7995214,
"location_type": "exact",
"text": ", Additional",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8001,
"end": 8038,
"page_num": 2
}
],
"span_id": "58853:c:82567:idx:59",
"confidence": {
"address": 0.0005990641075186431,
"category": 0.0007991442107595503,
"date": 0.0002555416140239686,
"email": 0.0018701815279200673,
"person_name": 0.00010929503332590684,
"phone": 0.00013124212273396552,
"price": 0.0004469931882340461,
"unformatted_summary": 0.6341442465782166,
"unformatted_text": 0.0013730997452512383
},
"field_id": 7995214,
"location_type": "exact",
"text": "be attached if more space is required",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8292,
"end": 8294,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:60",
"confidence": {
"address": 0.011419869028031826,
"category": 0.0015106312930583954,
"date": 0.002422394696623087,
"email": 0.002798901405185461,
"person_name": 0.0004934326861985028,
"phone": 0.0006648784037679434,
"price": 0.0020412311423569918,
"unformatted_summary": 0.405647337436676,
"unformatted_text": 0.012250985950231552
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8302,
"end": 8349,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:61",
"confidence": {
"address": 0.005440725479274988,
"category": 0.0013473407598212361,
"date": 0.0010523442178964615,
"email": 0.0023842360824346542,
"person_name": 0.0006280663073994219,
"phone": 0.0003976929292548448,
"price": 0.0010271164355799556,
"unformatted_summary": 0.7712782621383667,
"unformatted_text": 0.01173646654933691
},
"field_id": 7995214,
"location_type": "exact",
"text": "(REGARDLESS OF FAULT AND WHETHER OR NOT INSURED",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8351,
"end": 8355,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:62",
"confidence": {
"address": 0.00845501571893692,
"category": 0.00120619498193264,
"date": 0.0018839907133951783,
"email": 0.0036496527027338743,
"person_name": 0.0006118267774581909,
"phone": 0.0007259093690663576,
"price": 0.0014038565568625927,
"unformatted_summary": 0.33466511964797974,
"unformatted_text": 0.011142177507281303
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR O",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8385,
"end": 8393,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:63",
"confidence": {
"address": 0.00794171541929245,
"category": 0.00219622440636158,
"date": 0.001465142355300486,
"email": 0.003949692938476801,
"person_name": 0.0007845908403396606,
"phone": 0.0006485836929641664,
"price": 0.001450308132916689,
"unformatted_summary": 0.38338688015937805,
"unformatted_text": 0.019964346662163734
},
"field_id": 7995214,
"location_type": "exact",
"text": "TO CLAIM",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8584,
"end": 8612,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:64",
"confidence": {
"address": 0.00009334601782029495,
"category": 0.00037538152537308633,
"date": 0.00028907344676554203,
"email": 0.0007612897898070514,
"person_name": 0.000029404935048660263,
"phone": 0.00005845951454830356,
"price": 0.0005174554535187781,
"unformatted_summary": 0.5545358061790466,
"unformatted_text": 0.0004833199200220406
},
"field_id": 7995214,
"location_type": "exact",
"text": "of the Notice of Information",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8624,
"end": 8631,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:65",
"confidence": {
"address": 0.000032728090445743874,
"category": 0.0005952916690148413,
"date": 0.00044970642193220556,
"email": 0.0002897857630159706,
"person_name": 0.000014489356544800103,
"phone": 0.00001812166374293156,
"price": 0.00018907427147496492,
"unformatted_summary": 0.4111236035823822,
"unformatted_text": 0.00024592297268100083
},
"field_id": 7995214,
"location_type": "exact",
"text": "Privacy",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8642,
"end": 8665,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:66",
"confidence": {
"address": 0.00014909074525348842,
"category": 0.0008136499673128128,
"date": 0.00028458848828449845,
"email": 0.003147771116346121,
"person_name": 0.00006445324834203348,
"phone": 0.00010515029862290248,
"price": 0.0009854570962488651,
"unformatted_summary": 0.7325308322906494,
"unformatted_text": 0.020624013617634773
},
"field_id": 7995214,
"location_type": "exact",
"text": "given to the applicant.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8671,
"end": 8819,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:67",
"confidence": {
"address": 0.0003887019702233374,
"category": 0.0005383680108934641,
"date": 0.00042599078733474016,
"email": 0.0011215991107746959,
"person_name": 0.00020725044305436313,
"phone": 0.0009584765648469329,
"price": 0.0015637758187949657,
"unformatted_summary": 0.8035232424736023,
"unformatted_text": 0.003837777068838477
},
"field_id": 7995214,
"location_type": "exact",
"text": "required in all states, contact your agent or broker for your state's requirements.)\nPERSONAL INFORMATION ABOUT YOU, INCLUDING INFORMATION FROM A CR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8824,
"end": 8943,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:68",
"confidence": {
"address": 0.0026068103034049273,
"category": 0.0003580553748179227,
"date": 0.0014032094040885568,
"email": 0.00048492258065380156,
"person_name": 0.0002857398067135364,
"phone": 0.0002921070554293692,
"price": 0.0010559586808085442,
"unformatted_summary": 0.8365303874015808,
"unformatted_text": 0.007965979166328907
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR OTHER INVESTIGATIVE REPORT, MAY BE COLLECTED FROM PERSONS\nOTHER THAN YOU IN CONNECTION WITH THIS APPLICATION FOR INS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8950,
"end": 8970,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:69",
"confidence": {
"address": 0.007274948060512543,
"category": 0.0009823431028053164,
"date": 0.0030130199156701565,
"email": 0.0010375248966738582,
"person_name": 0.0005538242985494435,
"phone": 0.0008124761516228318,
"price": 0.002520960057154298,
"unformatted_summary": 0.6005038619041443,
"unformatted_text": 0.012007463723421097
},
"field_id": 7995214,
"location_type": "exact",
"text": "AND SUBSEQUENT AMEND",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8976,
"end": 9278,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:70",
"confidence": {
"address": 0.0069457306526601315,
"category": 0.0007559019140899181,
"date": 0.0021483690943568945,
"email": 0.0009610031847842038,
"person_name": 0.0021585985086858273,
"phone": 0.0007121422095224261,
"price": 0.0018215109594166279,
"unformatted_summary": 0.821222722530365,
"unformatted_text": 0.04152955859899521
},
"field_id": 7995214,
"location_type": "exact",
"text": "AND RENEWALS. SUCH INFORMATION AS WELL AS\nOTHER PERSONAL AND PRIVILEGED INFORMATION COLLECTED BY US OR OUR AGENTS MAY IN CERTAIN CIRCUMSTANCES BE DISCLOSED TO THIRD PARTIES\nWITHOUT YOUR AUTHORIZATION. CREDIT SCORING INFORMATION MAY BE USED TO HELP DETERMINE EITHER YOUR ELIGIBILITY FOR INSURANCE OR THE",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 9279,
"end": 9282,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:71",
"confidence": {
"address": 0.009557840414345264,
"category": 0.0033211943227797747,
"date": 0.004664805717766285,
"email": 0.009740701876580715,
"person_name": 0.0044324821792542934,
"phone": 0.004617922008037567,
"price": 0.007729788776487112,
"unformatted_summary": 0.2632158696651459,
"unformatted_text": 0.40190786123275757
},
"field_id": 7995213,
"location_type": "exact",
"text": "PRE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9282,
"end": 9284,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:72",
"confidence": {
"address": 0.026656851172447205,
"category": 0.0021569665987044573,
"date": 0.005644307471811771,
"email": 0.006211746484041214,
"person_name": 0.004585569724440575,
"phone": 0.002422849414870143,
"price": 0.004509519785642624,
"unformatted_summary": 0.32518327236175537,
"unformatted_text": 0.25719404220581055
},
"field_id": 7995214,
"location_type": "exact",
"text": "MI",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9287,
"end": 9303,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:73",
"confidence": {
"address": 0.011444798670709133,
"category": 0.0005179005092941225,
"date": 0.0012853697407990694,
"email": 0.001920750131830573,
"person_name": 0.001850218279287219,
"phone": 0.001261135214008391,
"price": 0.0039383415132761,
"unformatted_summary": 0.5958042144775391,
"unformatted_text": 0.297870397567749
},
"field_id": 7995214,
"location_type": "exact",
"text": "YOU WILL BE CHAR",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 9303,
"end": 9304,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:74",
"confidence": {
"address": 0.027904650196433067,
"category": 0.0010595002677291632,
"date": 0.0034980098716914654,
"email": 0.004086344502866268,
"person_name": 0.004040093161165714,
"phone": 0.0019269564654678106,
"price": 0.010248018428683281,
"unformatted_summary": 0.2467157244682312,
"unformatted_text": 0.3963133692741394
},
"field_id": 7995213,
"location_type": "exact",
"text": "G",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9304,
"end": 9644,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:75",
"confidence": {
"address": 0.007031158544123173,
"category": 0.001336607034318149,
"date": 0.0026235703844577074,
"email": 0.000820519111584872,
"person_name": 0.0016528763808310032,
"phone": 0.0007101284572854638,
"price": 0.002238547895103693,
"unformatted_summary": 0.7864742279052734,
"unformatted_text": 0.053103335201740265
},
"field_id": 7995214,
"location_type": "exact",
"text": "ED. WE MAY USE A THIRD PARTY IN CONNECTION WITH THE DEVELOPMENT OF YOUR SCORE. YOU MAY HAVE THE RIGHT TO\nREVIEW YOUR PERSONAL INFORMATION IN OUR FILES AND REQUEST CORRECTION OF ANY INACCURACIES. YOU MAY ALSO HAVE THE RIGHT TO REQUEST IN\nWRITING THAT WE CONSIDER EXTRAORDINARY LIFE CIRCUMSTANCES IN CONNECTION WITH THE DEVELOPMENT OF YOUR CR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9649,
"end": 9935,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:76",
"confidence": {
"address": 0.005738127510994673,
"category": 0.0019250307232141495,
"date": 0.0025043205823749304,
"email": 0.0012647600378841162,
"person_name": 0.0042074196971952915,
"phone": 0.0013708006590604782,
"price": 0.001917864428833127,
"unformatted_summary": 0.7615368962287903,
"unformatted_text": 0.027733657509088516
},
"field_id": 7995214,
"location_type": "exact",
"text": "SCORE. THESE RIGHTS MAY\nBE LIMITED IN SOME STATES. PLEASE CONTACT YOUR AGENT OR BROKER TO LEARN HOW THESE RIGHTS MAY APPLY IN YOUR STATE OR FOR INSTRUCTIONS ON\nHOW TO SUBMIT A REQUEST TO US FOR A MORE DETAILED DESCRIPTION OF YOUR RIGHTS AND OUR PRACTICES REGARDING PERSONAL INFORMATION.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9952,
"end": 9954,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:77",
"confidence": {
"address": 0.0033075970131903887,
"category": 0.002972158370539546,
"date": 0.0010617789812386036,
"email": 0.004637917038053274,
"person_name": 0.0007442331989295781,
"phone": 0.00009965850767912343,
"price": 0.009031268768012524,
"unformatted_summary": 0.3833928406238556,
"unformatted_text": 0.004023839253932238
},
"field_id": 7995214,
"location_type": "exact",
"text": "in",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10000,
"end": 10065,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:78",
"confidence": {
"address": 0.0011066097067669034,
"category": 0.003515081712976098,
"date": 0.0010348584037274122,
"email": 0.002004285342991352,
"person_name": 0.00033010024344548583,
"phone": 0.0003925766795873642,
"price": 0.0026182697620242834,
"unformatted_summary": 0.7326087951660156,
"unformatted_text": 0.0013945961836725473
},
"field_id": 7995214,
"location_type": "exact",
"text": ". Specific ACORD 38s are available for applicants in these states",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10141,
"end": 10417,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:79",
"confidence": {
"address": 0.002329823561012745,
"category": 0.0032954933121800423,
"date": 0.0008289456600323319,
"email": 0.0028929489199072123,
"person_name": 0.0010245779994875193,
"phone": 0.00040238897781819105,
"price": 0.005128040444105864,
"unformatted_summary": 0.8960670232772827,
"unformatted_text": 0.02294350601732731
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly (or willfully)* presents a false or fraudulent claim for payment of a loss or\nbenefit or knowingly (or willfully)* presents false information in an application for insurance is guilty of a crime and may be subject to fines and confinement in\nprison. *",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10425,
"end": 10427,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:80",
"confidence": {
"address": 0.01407802477478981,
"category": 0.16446775197982788,
"date": 0.005279229022562504,
"email": 0.007800171617418528,
"person_name": 0.008775725029408932,
"phone": 0.0014123901491984725,
"price": 0.023374944925308228,
"unformatted_summary": 0.2716418504714966,
"unformatted_text": 0.07458298653364182
},
"field_id": 7995214,
"location_type": "exact",
"text": "in",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10448,
"end": 10450,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:82",
"confidence": {
"address": 0.004900883883237839,
"category": 0.028803681954741478,
"date": 0.0008343838271684945,
"email": 0.0025195274502038956,
"person_name": 0.0026495633646845818,
"phone": 0.0009537690784782171,
"price": 0.013449433259665966,
"unformatted_summary": 0.3549611568450928,
"unformatted_text": 0.04671163111925125
},
"field_id": 7995214,
"location_type": "exact",
"text": "in",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10455,
"end": 10636,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:83",
"confidence": {
"address": 0.00034125460661016405,
"category": 0.0005280853365547955,
"date": 0.00027220044285058975,
"email": 0.0010925623355433345,
"person_name": 0.00017487331933807582,
"phone": 0.00011683830234687775,
"price": 0.0005529677728191018,
"unformatted_summary": 0.9263415932655334,
"unformatted_text": 0.01575222611427307
},
"field_id": 7995214,
"location_type": "exact",
"text": "It is unlawful to knowingly provide false, incomplete, or misleading facts or information to an insurance company for the purpose of\ndefrauding or attempting to defraud the company.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10647,
"end": 10679,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:84",
"confidence": {
"address": 0.012467515654861927,
"category": 0.01298272330313921,
"date": 0.00450461870059371,
"email": 0.01794801838696003,
"person_name": 0.008105452172458172,
"phone": 0.0017329538241028786,
"price": 0.03652330860495567,
"unformatted_summary": 0.5676732659339905,
"unformatted_text": 0.027756258845329285
},
"field_id": 7995214,
"location_type": "exact",
"text": "may include imprisonment, fines,",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10687,
"end": 11135,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:85",
"confidence": {
"address": 0.0026960810646414757,
"category": 0.0025103394873440266,
"date": 0.0009681734372861683,
"email": 0.003271087072789669,
"person_name": 0.0016090886201709509,
"phone": 0.0009566957596689463,
"price": 0.008774611167609692,
"unformatted_summary": 0.9160904288291931,
"unformatted_text": 0.011076623573899269
},
"field_id": 7995214,
"location_type": "exact",
"text": "of insurance and civil damages. Any insurance\ncompany or agent of an insurance company who knowingly provides false, incomplete, or misleading facts or information to a policyholder or claimant for the\npurpose of defrauding or attempting to defraud the policyholder or claimant with regard to a settlement or award payable from insurance proceeds shall be\nreported to the Colorado Division of Insurance within the Department of Regulatory Agencies.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11147,
"end": 11156,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:86",
"confidence": {
"address": 0.010027346201241016,
"category": 0.022682666778564453,
"date": 0.0007244199514389038,
"email": 0.004401315003633499,
"person_name": 0.002255114959552884,
"phone": 0.0009087325888685882,
"price": 0.01255052536725998,
"unformatted_summary": 0.537788450717926,
"unformatted_text": 0.01941128633916378
},
"field_id": 7995214,
"location_type": "exact",
"text": "in FL and",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11161,
"end": 11397,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:87",
"confidence": {
"address": 0.0007911273860372603,
"category": 0.0009869578061625361,
"date": 0.0004020721826236695,
"email": 0.0012266699923202395,
"person_name": 0.00018495267431717366,
"phone": 0.00009027326450450346,
"price": 0.0007461910136044025,
"unformatted_summary": 0.946969211101532,
"unformatted_text": 0.012054008431732655
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to injure, defraud, or deceive any insurer files a statement of claim or an application\ncontaining any false, incomplete, or misleading information is guilty of a felony (of the third degree)*. *",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11405,
"end": 11416,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:88",
"confidence": {
"address": 0.003215701086446643,
"category": 0.028355544432997704,
"date": 0.0005796418990939856,
"email": 0.0040427763015031815,
"person_name": 0.0016930358251556754,
"phone": 0.0011448054574429989,
"price": 0.011667104437947273,
"unformatted_summary": 0.4547809362411499,
"unformatted_text": 0.09991004317998886
},
"field_id": 7995214,
"location_type": "exact",
"text": "in FL Only.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11428,
"end": 11433,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:89",
"confidence": {
"address": 0.0026562893763184547,
"category": 0.01445766631513834,
"date": 0.0005427583819255233,
"email": 0.003008475061506033,
"person_name": 0.0011707264930009842,
"phone": 0.0004111794987693429,
"price": 0.012259561568498611,
"unformatted_summary": 0.4234445095062256,
"unformatted_text": 0.009110742248594761
},
"field_id": 7995214,
"location_type": "exact",
"text": "in KS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11435,
"end": 11892,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:90",
"confidence": {
"address": 0.00048781646182760596,
"category": 0.0003053396940231323,
"date": 0.00036970412475056946,
"email": 0.0009330616449005902,
"person_name": 0.00011995032400591299,
"phone": 0.00006432447844417766,
"price": 0.0009728409931994975,
"unformatted_summary": 0.9248026609420776,
"unformatted_text": 0.009889202192425728
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who, knowingly and with intent to defraud, presents, causes to be presented or prepares with knowledge or belief that it will be\npresented to or by an insurer, purported insurer, broker or any agent thereof, any written statement as part of, or in support of, an application for the issuance\nof, or the rating of an insurance policy for personal or commercial insurance, or a claim for payment or other benefit pursuant to an insurance policy for",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11904,
"end": 12156,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:91",
"confidence": {
"address": 0.00016034531290642917,
"category": 0.00016937767213676125,
"date": 0.0001244253508048132,
"email": 0.0005260318284854293,
"person_name": 0.00009122284973273054,
"phone": 0.00002295965350640472,
"price": 0.00024623749777674675,
"unformatted_summary": 0.9470834136009216,
"unformatted_text": 0.016151174902915955
},
"field_id": 7995214,
"location_type": "exact",
"text": "or personal insurance which such person knows to contain materially false information concerning any fact material thereto; or conceals, for the\npurpose of misleading, information concerning any fact material thereto commits a fraudulent insurance act.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12168,
"end": 12170,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:92",
"confidence": {
"address": 0.057208430022001266,
"category": 0.04178948700428009,
"date": 0.010517459362745285,
"email": 0.02846318855881691,
"person_name": 0.02976187691092491,
"phone": 0.0034025569912046194,
"price": 0.09759735316038132,
"unformatted_summary": 0.3058960735797882,
"unformatted_text": 0.11441320925951004
},
"field_id": 7995214,
"location_type": "exact",
"text": "in",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 12175,
"end": 12177,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:93",
"confidence": {
"address": 0.2988758385181427,
"category": 0.02691735327243805,
"date": 0.023018013685941696,
"email": 0.04305845871567726,
"person_name": 0.017211832106113434,
"phone": 0.012690822593867779,
"price": 0.2361346185207367,
"unformatted_summary": 0.11756052076816559,
"unformatted_text": 0.04193924739956856
},
"field_id": 7995220,
"location_type": "exact",
"text": "NY",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 12179,
"end": 12181,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:94",
"confidence": {
"address": 0.18484362959861755,
"category": 0.023536112159490585,
"date": 0.025505363941192627,
"email": 0.05874158442020416,
"person_name": 0.026518145576119423,
"phone": 0.010624757967889309,
"price": 0.271344929933548,
"unformatted_summary": 0.11639100313186646,
"unformatted_text": 0.048259079456329346
},
"field_id": 7995217,
"location_type": "exact",
"text": "OH",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 41,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "price",
"spans": [
{
"start": 12182,
"end": 12188,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:95",
"confidence": {
"address": 0.07345028221607208,
"category": 0.03701673448085785,
"date": 0.014685951173305511,
"email": 0.03935069590806961,
"person_name": 0.017753545194864273,
"phone": 0.008449266664683819,
"price": 0.2072998583316803,
"unformatted_summary": 0.20305785536766052,
"unformatted_text": 0.050776638090610504
},
"field_id": 7995217,
"location_type": "exact",
"text": "and PA",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 41,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12190,
"end": 12597,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:96",
"confidence": {
"address": 0.0015359364915639162,
"category": 0.0004185266443528235,
"date": 0.00024377077352255583,
"email": 0.0019478239119052887,
"person_name": 0.00020900499657727778,
"phone": 0.0002338517369935289,
"price": 0.014642143622040749,
"unformatted_summary": 0.9263186454772949,
"unformatted_text": 0.015322284772992134
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to defraud any insurance company or other person files an application for\ninsurance or statement of claim containing any materially false information or conceals for the purpose of misleading, information concerning any fact material\nthereto commits a fraudulent insurance act, which is a crime and subjects such person to criminal and civil penalties (not to exceed",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 12598,
"end": 12611,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:97",
"confidence": {
"address": 0.0023601825814694166,
"category": 0.0012905057519674301,
"date": 0.0016904458170756698,
"email": 0.002024340908974409,
"person_name": 0.0003866302431561053,
"phone": 0.0011152056977152824,
"price": 0.6313551664352417,
"unformatted_summary": 0.33749786019325256,
"unformatted_text": 0.005485258065164089
},
"field_id": 7995217,
"location_type": "exact",
"text": "five thousand",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 42,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12612,
"end": 12680,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:98",
"confidence": {
"address": 0.002599642612040043,
"category": 0.0015436806716024876,
"date": 0.00045852584298700094,
"email": 0.0044388240203261375,
"person_name": 0.000468023878056556,
"phone": 0.0005937443929724395,
"price": 0.08432633429765701,
"unformatted_summary": 0.7583233714103699,
"unformatted_text": 0.013562102802097797
},
"field_id": 7995214,
"location_type": "exact",
"text": "dollars and\nthe stated value of the claim for each such violation)*.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12693,
"end": 12695,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:99",
"confidence": {
"address": 0.0864478200674057,
"category": 0.012799226678907871,
"date": 0.0019555306062102318,
"email": 0.10450693219900131,
"person_name": 0.018071573227643967,
"phone": 0.0035924927797168493,
"price": 0.02431647665798664,
"unformatted_summary": 0.3151436150074005,
"unformatted_text": 0.024062534794211388
},
"field_id": 7995214,
"location_type": "exact",
"text": "NY",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 12700,
"end": 12701,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:100",
"confidence": {
"address": 0.0007009595283307135,
"category": 0.014208421111106873,
"date": 0.0006505607161670923,
"email": 0.014250107109546661,
"person_name": 0.0016413094708696008,
"phone": 0.0030207193922251463,
"price": 0.002520403591915965,
"unformatted_summary": 0.4249870777130127,
"unformatted_text": 0.5326060652732849
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12738,
"end": 12880,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:101",
"confidence": {
"address": 0.0007714222301729023,
"category": 0.0008279114845208824,
"date": 0.00041964868432842195,
"email": 0.0021359154488891363,
"person_name": 0.0004672282957471907,
"phone": 0.0001356794236926362,
"price": 0.0011282340856269002,
"unformatted_summary": 0.8990536332130432,
"unformatted_text": 0.033791422843933105
},
"field_id": 7995214,
"location_type": "exact",
"text": "is a crime to knowingly provide false, incomplete or misleading information to an insurance company for the purpose\nof defrauding the company.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12891,
"end": 12959,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:102",
"confidence": {
"address": 0.004726214800029993,
"category": 0.005248972214758396,
"date": 0.002046934561803937,
"email": 0.007823380641639233,
"person_name": 0.002246435731649399,
"phone": 0.0008438205695711076,
"price": 0.015104005113244057,
"unformatted_summary": 0.6339768767356873,
"unformatted_text": 0.0339522585272789
},
"field_id": 7995214,
"location_type": "exact",
"text": "(may)* include imprisonment, fines and denial of insurance benefits.",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 12979,
"end": 12980,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:103",
"confidence": {
"address": 0.0007004609797149897,
"category": 0.01420026458799839,
"date": 0.0006501178140752017,
"email": 0.014240190386772156,
"person_name": 0.0016405927017331123,
"phone": 0.003018616698682308,
"price": 0.00251922570168972,
"unformatted_summary": 0.4250154197216034,
"unformatted_text": 0.5326008796691895
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12999,
"end": 13144,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:104",
"confidence": {
"address": 0.0029744270723313093,
"category": 0.0019355783006176353,
"date": 0.000628288893494755,
"email": 0.003429476171731949,
"person_name": 0.0011595760006457567,
"phone": 0.0006560910842381418,
"price": 0.00556936813518405,
"unformatted_summary": 0.9050783514976501,
"unformatted_text": 0.020065221935510635
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who includes any false or misleading information on an application for an insurance policy is subject to criminal and civil\npenalties.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13156,
"end": 13161,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:105",
"confidence": {
"address": 0.002091355388984084,
"category": 0.0021912299562245607,
"date": 0.001783162821084261,
"email": 0.00667068874463439,
"person_name": 0.003626118414103985,
"phone": 0.00019945141684729606,
"price": 0.006746994331479073,
"unformatted_summary": 0.604069709777832,
"unformatted_text": 0.027070647105574608
},
"field_id": 7995214,
"location_type": "exact",
"text": "in OR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13163,
"end": 13366,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:106",
"confidence": {
"address": 0.00024553557159379125,
"category": 0.00011949654435738921,
"date": 0.0001460947241866961,
"email": 0.0006178431212902069,
"person_name": 0.00011865556007251143,
"phone": 0.00006017129271640442,
"price": 0.0006282360409386456,
"unformatted_summary": 0.9728758931159973,
"unformatted_text": 0.010827966034412384
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to defraud or solicit another to defraud the insurer by submitting an application containing a\nfalse statement as to any material fact may be violating state law.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13378,
"end": 13383,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:107",
"confidence": {
"address": 0.0013381168246269226,
"category": 0.0023337171878665686,
"date": 0.001019108109176159,
"email": 0.0037080449983477592,
"person_name": 0.0017039105296134949,
"phone": 0.00010309369827155024,
"price": 0.0028676351066678762,
"unformatted_summary": 0.6199663281440735,
"unformatted_text": 0.020824337378144264
},
"field_id": 7995214,
"location_type": "exact",
"text": "in PR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13385,
"end": 13723,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:108",
"confidence": {
"address": 0.0019056558376178145,
"category": 0.0006507751531898975,
"date": 0.00037894747219979763,
"email": 0.002349619986489415,
"person_name": 0.0003769984468817711,
"phone": 0.00016051577404141426,
"price": 0.0016401734901592135,
"unformatted_summary": 0.9132635593414307,
"unformatted_text": 0.04986264556646347
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with the intention of defrauding presents false information in an insurance application, or presents, helps,\nor causes the presentation of a fraudulent claim for the payment of a loss or any other benefit, or presents more than one claim for the same damage or loss,\nshall incur a felony and, upon conviction,",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 13724,
"end": 13729,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:109",
"confidence": {
"address": 0.009877405129373074,
"category": 0.0005653384723700583,
"date": 0.0007181528490036726,
"email": 0.03252295032143593,
"person_name": 0.0006058721337467432,
"phone": 0.0003704130940604955,
"price": 0.0007479240302927792,
"unformatted_summary": 0.42909935116767883,
"unformatted_text": 0.43240541219711304
},
"field_id": 7995213,
"location_type": "exact",
"text": "shall",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13730,
"end": 13789,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:110",
"confidence": {
"address": 0.019442731514573097,
"category": 0.0021128016524016857,
"date": 0.0011052889749407768,
"email": 0.011990610510110855,
"person_name": 0.0030824486166238785,
"phone": 0.0020454467739909887,
"price": 0.0735667273402214,
"unformatted_summary": 0.7007094025611877,
"unformatted_text": 0.10298026353120804
},
"field_id": 7995214,
"location_type": "exact",
"text": "be sanctioned for each violation by a fine of not less than",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 13790,
"end": 13819,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:111",
"confidence": {
"address": 0.002211055951192975,
"category": 0.0025849011726677418,
"date": 0.0006086099892854691,
"email": 0.003964368253946304,
"person_name": 0.0008721431950107217,
"phone": 0.0021359410602599382,
"price": 0.7851220965385437,
"unformatted_summary": 0.18670590221881866,
"unformatted_text": 0.002488704165443778
},
"field_id": 7995217,
"location_type": "exact",
"text": "five thousand dollars ($5,000",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 48,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13819,
"end": 13845,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:112",
"confidence": {
"address": 0.007720489986240864,
"category": 0.0025229223538190126,
"date": 0.002295645885169506,
"email": 0.0048286751843988895,
"person_name": 0.0018207160755991936,
"phone": 0.007109046448022127,
"price": 0.3228124976158142,
"unformatted_summary": 0.6188879013061523,
"unformatted_text": 0.008671795018017292
},
"field_id": 7995214,
"location_type": "exact",
"text": ") and not more than ten\nth",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 13845,
"end": 13868,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:113",
"confidence": {
"address": 0.001998815219849348,
"category": 0.0015932414680719376,
"date": 0.0006477611023001373,
"email": 0.002965300576761365,
"person_name": 0.0006925531779415905,
"phone": 0.003279364900663495,
"price": 0.794517457485199,
"unformatted_summary": 0.18284958600997925,
"unformatted_text": 0.002677994780242443
},
"field_id": 7995217,
"location_type": "exact",
"text": "ousand dollars ($10,000",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 49,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13868,
"end": 13975,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:114",
"confidence": {
"address": 0.01880648545920849,
"category": 0.004323710687458515,
"date": 0.00746535649523139,
"email": 0.015947600826621056,
"person_name": 0.004653926473110914,
"phone": 0.0016693227225914598,
"price": 0.032765623182058334,
"unformatted_summary": 0.7689520120620728,
"unformatted_text": 0.05753568559885025
},
"field_id": 7995214,
"location_type": "exact",
"text": "), or a fixed term of imprisonment for three (3) years, or both penalties. Should aggravating circumstances",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 13976,
"end": 13977,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:115",
"confidence": {
"address": 0.002577531384304166,
"category": 0.0010503859957680106,
"date": 0.000723484845366329,
"email": 0.006493374705314636,
"person_name": 0.0015672211302444339,
"phone": 0.0009093384142033756,
"price": 0.0011638427386060357,
"unformatted_summary": 0.38313543796539307,
"unformatted_text": 0.4289473295211792
},
"field_id": 7995213,
"location_type": "exact",
"text": "[",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13977,
"end": 14001,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:116",
"confidence": {
"address": 0.008534585125744343,
"category": 0.0017456122441217303,
"date": 0.002097925404086709,
"email": 0.004713996779173613,
"person_name": 0.002152978675439954,
"phone": 0.0004624688590411097,
"price": 0.0021043838933110237,
"unformatted_summary": 0.581026554107666,
"unformatted_text": 0.1957857608795166
},
"field_id": 7995214,
"location_type": "exact",
"text": "be] present, the penalty",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 14002,
"end": 14006,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:117",
"confidence": {
"address": 0.005148626398295164,
"category": 0.0014655039412900805,
"date": 0.0013975404435768723,
"email": 0.011963610537350178,
"person_name": 0.0016386840725317597,
"phone": 0.00041423572110943496,
"price": 0.0008162983576767147,
"unformatted_summary": 0.31524622440338135,
"unformatted_text": 0.5086591243743896
},
"field_id": 7995213,
"location_type": "exact",
"text": "thus",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 14007,
"end": 14432,
"page_num": 3
}
],
"span_id": "58853:c:82567:idx:118",
"confidence": {
"address": 0.006572654936462641,
"category": 0.0005438553052954376,
"date": 0.0031743478029966354,
"email": 0.0038849744014441967,
"person_name": 0.002612082753330469,
"phone": 0.0008551139035262167,
"price": 0.005960934795439243,
"unformatted_summary": 0.8373020887374878,
"unformatted_text": 0.05582745373249054
},
"field_id": 7995214,
"location_type": "exact",
"text": "established may be increased to a maximum of five (5) years, if extenuating circumstances are present, it may be reduced to a minimum of two (2)\nyears.\nTHE UNDERSIGNED IS AN AUTHORIZED REPRESENTATIVE OF THE APPLICANT AND REPRESENTS THAT REASONABLE INQUIRY HAS BEEN MADE TO OBTAIN THE\nANSWERS TO QUESTIONS ON THIS APPLICATION. HE/SHE REPRESENTS THAT THE ANSWERS ARE TRUE, CORRECT AND COMPLETE TO THE BEST OF HIS/HER\nKNOWLEDGE.",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 15094,
"end": 15104,
"page_num": 4
}
],
"span_id": "58853:c:82567:idx:119",
"confidence": {
"address": 0.000026621743018040434,
"category": 0.000029526494472520426,
"date": 0.9992913007736206,
"email": 0.000045232492993818596,
"person_name": 3.539842737154686e-6,
"phone": 8.580677786085289e-6,
"price": 9.386877536599059e-6,
"unformatted_summary": 0.0000533651837031357,
"unformatted_text": 4.623213499144185e-6
},
"field_id": 7995216,
"location_type": "exact",
"text": "01/31/2023",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 51,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 15484,
"end": 15493,
"page_num": 4
}
],
"span_id": "58853:c:82567:idx:120",
"confidence": {
"address": 0.04316926375031471,
"category": 0.008241375908255577,
"date": 0.817777156829834,
"email": 0.006614659912884235,
"person_name": 0.0006626970134675503,
"phone": 0.0007869724067859352,
"price": 0.009940886870026588,
"unformatted_summary": 0.03384877368807793,
"unformatted_text": 0.0011349659180268645
},
"field_id": 7995216,
"location_type": "exact",
"text": "(2008/01)",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 52,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15503,
"end": 15506,
"page_num": 4
}
],
"span_id": "58853:c:82567:idx:121",
"confidence": {
"address": 0.029943816363811493,
"category": 0.020053081214427948,
"date": 0.03186140954494476,
"email": 0.17212554812431335,
"person_name": 0.012802652083337307,
"phone": 0.003768322290852666,
"price": 0.02358076348900795,
"unformatted_summary": 0.31794285774230957,
"unformatted_text": 0.010447308421134949
},
"field_id": 7995214,
"location_type": "exact",
"text": "ORD",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15510,
"end": 15513,
"page_num": 4
}
],
"span_id": "58853:c:82567:idx:122",
"confidence": {
"address": 0.05405125766992569,
"category": 0.00872987974435091,
"date": 0.07354637235403061,
"email": 0.1432517021894455,
"person_name": 0.012264604680240154,
"phone": 0.006465360056608915,
"price": 0.016827285289764404,
"unformatted_summary": 0.29907283186912537,
"unformatted_text": 0.00490150460973382
},
"field_id": 7995214,
"location_type": "exact",
"text": "POR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15518,
"end": 15519,
"page_num": 4
}
],
"span_id": "58853:c:82567:idx:123",
"confidence": {
"address": 0.0008317971369251609,
"category": 0.012677544727921486,
"date": 0.0018636462045833468,
"email": 0.25231465697288513,
"person_name": 0.0014253357658162713,
"phone": 0.0014754359144717455,
"price": 0.0020995785016566515,
"unformatted_summary": 0.5584195852279663,
"unformatted_text": 0.15959976613521576
},
"field_id": 7995214,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15524,
"end": 15530,
"page_num": 4
}
],
"span_id": "58853:c:82567:idx:124",
"confidence": {
"address": 0.059042371809482574,
"category": 0.04267482832074165,
"date": 0.15765878558158875,
"email": 0.051904741674661636,
"person_name": 0.008050728589296341,
"phone": 0.007015973329544067,
"price": 0.04267482832074165,
"unformatted_summary": 0.4731881618499756,
"unformatted_text": 0.012848549522459507
},
"field_id": 7995214,
"location_type": "exact",
"text": "rights",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15539,
"end": 15540,
"page_num": 4
}
],
"span_id": "58853:c:82567:idx:125",
"confidence": {
"address": 0.0008317614556290209,
"category": 0.01267700083553791,
"date": 0.0018635664600878954,
"email": 0.2523038983345032,
"person_name": 0.0014252749970182776,
"phone": 0.0014754628064110875,
"price": 0.0020994888618588448,
"unformatted_summary": 0.5584297776222229,
"unformatted_text": 0.15960267186164856
},
"field_id": 7995214,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15556,
"end": 15559,
"page_num": 4
}
],
"span_id": "58853:c:82567:idx:126",
"confidence": {
"address": 0.0028776919934898615,
"category": 0.023975791409611702,
"date": 0.008517062291502953,
"email": 0.012588171288371086,
"person_name": 0.0012620138004422188,
"phone": 0.0003985428484156728,
"price": 0.01699827052652836,
"unformatted_summary": 0.3484509289264679,
"unformatted_text": 0.0019201176473870873
},
"field_id": 7995214,
"location_type": "exact",
"text": "and",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 15615,
"end": 15620,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:127",
"confidence": {
"address": 0.001787734916433692,
"category": 0.0004944727406837046,
"date": 0.5712113976478577,
"email": 0.0007559786317870021,
"person_name": 0.00007208016177173704,
"phone": 0.00008188298670575023,
"price": 0.004033651668578386,
"unformatted_summary": 0.0009565441869199276,
"unformatted_text": 0.00003421750443521887
},
"field_id": 7995216,
"location_type": "exact",
"text": "00008",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 54,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 15647,
"end": 15650,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:129",
"confidence": {
"address": 0.00012733745097648352,
"category": 0.00010750287037808448,
"date": 0.5361746549606323,
"email": 0.0001550202287035063,
"person_name": 0.000018191509298048913,
"phone": 6.726371339027537e-6,
"price": 0.00017748295795172453,
"unformatted_summary": 0.00015015958342701197,
"unformatted_text": 5.512347343028523e-6
},
"field_id": 7995216,
"location_type": "exact",
"text": "/20",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 55,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15691,
"end": 15693,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:130",
"confidence": {
"address": 0.00046230354928411543,
"category": 0.00040730967884883285,
"date": 0.00011600025027291849,
"email": 0.0009205515380017459,
"person_name": 0.0006403580191545188,
"phone": 0.0004222702991683036,
"price": 0.004970231559127569,
"unformatted_summary": 0.9499954581260681,
"unformatted_text": 0.008027451112866402
},
"field_id": 7995214,
"location_type": "exact",
"text": "If",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15706,
"end": 15723,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:131",
"confidence": {
"address": 0.00011389207793399692,
"category": 0.00037424106267280877,
"date": 0.0000979004762484692,
"email": 0.0005499699618667364,
"person_name": 0.00012339236855041236,
"phone": 0.0001271592773264274,
"price": 0.00168676080647856,
"unformatted_summary": 0.9616219401359558,
"unformatted_text": 0.0015051442896947265
},
"field_id": 7995214,
"location_type": "exact",
"text": "is checked in the",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15731,
"end": 15833,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:132",
"confidence": {
"address": 0.00031084439251571894,
"category": 0.0005009233136661351,
"date": 0.00058132060803473,
"email": 0.0032965613063424826,
"person_name": 0.0004224270523991436,
"phone": 0.0002941496204584837,
"price": 0.0008231663377955556,
"unformatted_summary": 0.7688238620758057,
"unformatted_text": 0.007581209763884544
},
"field_id": 7995214,
"location_type": "exact",
"text": "INFORMATION section below, this is an application for a claims-made policy.\nRead all provisions of the",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15841,
"end": 15851,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:133",
"confidence": {
"address": 0.0018301935633644462,
"category": 0.003341919742524624,
"date": 0.0019420391181483865,
"email": 0.03232642263174057,
"person_name": 0.007796014659106731,
"phone": 0.0017935133073478937,
"price": 0.0012265350669622421,
"unformatted_summary": 0.7215913534164429,
"unformatted_text": 0.07572201639413834
},
"field_id": 7995214,
"location_type": "exact",
"text": "carefully.",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 15947,
"end": 15957,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:134",
"confidence": {
"address": 0.00007041075150482357,
"category": 0.00005765660898759961,
"date": 0.9092884063720703,
"email": 0.00009555439464747906,
"person_name": 8.337380677403416e-6,
"phone": 2.9886296033510007e-6,
"price": 0.00005563293234445155,
"unformatted_summary": 0.00007445752999046817,
"unformatted_text": 4.201877800369402e-6
},
"field_id": 7995216,
"location_type": "exact",
"text": "01/31/2023",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 58,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 17572,
"end": 17577,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:135",
"confidence": {
"address": 0.05473541095852852,
"category": 0.009447798132896423,
"date": 0.5389325618743896,
"email": 0.13130708038806915,
"person_name": 0.005191635340452194,
"phone": 0.0038369556423276663,
"price": 0.021212199702858925,
"unformatted_summary": 0.08014880120754242,
"unformatted_text": 0.0014619410503655672
},
"field_id": 7995216,
"location_type": "exact",
"text": "1991-",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 59,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "email",
"spans": [
{
"start": 17577,
"end": 17581,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:136",
"confidence": {
"address": 0.04622521623969078,
"category": 0.006295739207416773,
"date": 0.1726619154214859,
"email": 0.4500705301761627,
"person_name": 0.011991044506430626,
"phone": 0.004561577457934618,
"price": 0.015547903254628181,
"unformatted_summary": 0.11273104697465897,
"unformatted_text": 0.0009549338137730956
},
"field_id": 7995218,
"location_type": "exact",
"text": "2017",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17599,
"end": 17600,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:137",
"confidence": {
"address": 0.0008820167859084904,
"category": 0.027913395315408707,
"date": 0.002586385700851679,
"email": 0.23378734290599823,
"person_name": 0.0022582276724278927,
"phone": 0.003912598825991154,
"price": 0.003384006442502141,
"unformatted_summary": 0.43722566962242126,
"unformatted_text": 0.1717223972082138
},
"field_id": 7995214,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17605,
"end": 17611,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:138",
"confidence": {
"address": 0.05705728381872177,
"category": 0.036901962012052536,
"date": 0.11944132298231125,
"email": 0.0629526749253273,
"person_name": 0.008901925757527351,
"phone": 0.007136762607842684,
"price": 0.057161856442689896,
"unformatted_summary": 0.4249839186668396,
"unformatted_text": 0.01466873474419117
},
"field_id": 7995214,
"location_type": "exact",
"text": "rights",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17620,
"end": 17621,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:139",
"confidence": {
"address": 0.000882074236869812,
"category": 0.0279186200350523,
"date": 0.0025865540374070406,
"email": 0.23377403616905212,
"person_name": 0.002258236985653639,
"phone": 0.003912854008376598,
"price": 0.0033844332210719585,
"unformatted_summary": 0.43717408180236816,
"unformatted_text": 0.17168115079402924
},
"field_id": 7995214,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 17716,
"end": 17723,
"page_num": 5
}
],
"span_id": "58853:c:82567:idx:140",
"confidence": {
"address": 0.0009404251468367875,
"category": 0.001119324122555554,
"date": 0.946916401386261,
"email": 0.00021019224368501455,
"person_name": 0.000047371246182592586,
"phone": 0.000013495619896275457,
"price": 0.0004442621720954776,
"unformatted_summary": 0.003513696836307645,
"unformatted_text": 0.0000464241202280391
},
"field_id": 7995216,
"location_type": "exact",
"text": "2017/11",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 59,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17888,
"end": 17890,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:141",
"confidence": {
"address": 0.0025348574854433537,
"category": 0.0006048438372090459,
"date": 0.00036549303331412375,
"email": 0.0006258746143430471,
"person_name": 0.0002910587063524872,
"phone": 0.0004865102528128773,
"price": 0.00048538314877077937,
"unformatted_summary": 0.36596933007240295,
"unformatted_text": 0.09023921191692352
},
"field_id": 7995214,
"location_type": "exact",
"text": "ML",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17894,
"end": 17896,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:142",
"confidence": {
"address": 0.0029734130948781967,
"category": 0.0007266675820574164,
"date": 0.0005627946811728179,
"email": 0.0008571648504585028,
"person_name": 0.0006313012563623488,
"phone": 0.0007192104822024703,
"price": 0.0014899333473294973,
"unformatted_summary": 0.33740290999412537,
"unformatted_text": 0.09327118843793869
},
"field_id": 7995214,
"location_type": "exact",
"text": "IN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17912,
"end": 17927,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:143",
"confidence": {
"address": 0.0027688501868396997,
"category": 0.0007436356390826404,
"date": 0.00043724701390601695,
"email": 0.0005786890396848321,
"person_name": 0.0003857078845612705,
"phone": 0.0005108591867610812,
"price": 0.0008512708591297269,
"unformatted_summary": 0.39043980836868286,
"unformatted_text": 0.05848805978894234
},
"field_id": 7995214,
"location_type": "exact",
"text": "HAS A WAIVER OF",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17932,
"end": 17934,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:144",
"confidence": {
"address": 0.0025064500514417887,
"category": 0.0004952995805069804,
"date": 0.000369606219464913,
"email": 0.00047313771210610867,
"person_name": 0.0003163725486956537,
"phone": 0.0006619577761739492,
"price": 0.0008178578573279083,
"unformatted_summary": 0.3484514355659485,
"unformatted_text": 0.07091761380434036
},
"field_id": 7995214,
"location_type": "exact",
"text": "OG",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17948,
"end": 17961,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:145",
"confidence": {
"address": 0.0021743581164628267,
"category": 0.0007441115449182689,
"date": 0.000484775984659791,
"email": 0.0008188276551663876,
"person_name": 0.0003203373635187745,
"phone": 0.0006550164544023573,
"price": 0.0008429011795669794,
"unformatted_summary": 0.3765226900577545,
"unformatted_text": 0.052415650337934494
},
"field_id": 7995214,
"location_type": "exact",
"text": "A NAMED INSUR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17988,
"end": 17993,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:146",
"confidence": {
"address": 0.0027692937292158604,
"category": 0.0004262429429218173,
"date": 0.00045353954192250967,
"email": 0.0007223693537525833,
"person_name": 0.0003148486721329391,
"phone": 0.0002186090569011867,
"price": 0.000493365281727165,
"unformatted_summary": 0.36877763271331787,
"unformatted_text": 0.0223600622266531
},
"field_id": 7995214,
"location_type": "exact",
"text": "OTHER",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18064,
"end": 18231,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:147",
"confidence": {
"address": 0.002871887758374214,
"category": 0.0004542925744317472,
"date": 0.00021235460008028895,
"email": 0.002855851547792554,
"person_name": 0.0008930269978009164,
"phone": 0.0003321346011944115,
"price": 0.0017134655499830842,
"unformatted_summary": 0.7203129529953003,
"unformatted_text": 0.02867933362722397
},
"field_id": 7995214,
"location_type": "exact",
"text": "In Arkansas, the underlying General Liability coverage cannot contain defense costs within aggregate limits, but must have a separate, equal limit or must be unlimited",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18234,
"end": 18354,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:148",
"confidence": {
"address": 0.002379904966801405,
"category": 0.0002689533866941929,
"date": 0.000294412107905373,
"email": 0.0009449422359466553,
"person_name": 0.0004354715929366648,
"phone": 0.00028017599834129214,
"price": 0.0007006317027844489,
"unformatted_summary": 0.6520718932151794,
"unformatted_text": 0.04744592308998108
},
"field_id": 7995214,
"location_type": "exact",
"text": "CHECK ALL COVERAGES IN UNDERLYING POLICIES. ALSO CHECK IF ANY EXPOSURES ARE PRESENT FOR EACH COVERAGE. PROVIDE AN EXPLAN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18361,
"end": 18385,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:149",
"confidence": {
"address": 0.0009349901229143143,
"category": 0.00012239711941219866,
"date": 0.00017127352475654334,
"email": 0.0005698617314919829,
"person_name": 0.0004167769511695951,
"phone": 0.0002771317376755178,
"price": 0.00034902564948424697,
"unformatted_summary": 0.5324970483779907,
"unformatted_text": 0.01711435243487358
},
"field_id": 7995214,
"location_type": "exact",
"text": "EXPLAIN IF\nWHETHER INSUR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18388,
"end": 18394,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:150",
"confidence": {
"address": 0.002995083574205637,
"category": 0.00011030203313566744,
"date": 0.00033160968450829387,
"email": 0.0004570361925289035,
"person_name": 0.0018021335126832128,
"phone": 0.00015549383533652872,
"price": 0.0013867566594853997,
"unformatted_summary": 0.591533899307251,
"unformatted_text": 0.02504168637096882
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR NOT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18525,
"end": 18529,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:151",
"confidence": {
"address": 0.0011838984210044146,
"category": 0.00030594904092140496,
"date": 0.00014761806232854724,
"email": 0.0009819953702390194,
"person_name": 0.00007873022696003318,
"phone": 0.00015308681759051979,
"price": 0.0005941761191934347,
"unformatted_summary": 0.34821969270706177,
"unformatted_text": 0.0068434965796768665
},
"field_id": 7995214,
"location_type": "exact",
"text": "more",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18744,
"end": 18861,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:152",
"confidence": {
"address": 0.0018503679893910885,
"category": 0.0008326691458933055,
"date": 0.00014375618775375187,
"email": 0.0018062313320115209,
"person_name": 0.00042571197263896465,
"phone": 0.0002941340208053589,
"price": 0.0011318349279463291,
"unformatted_summary": 0.704274594783783,
"unformatted_text": 0.04858681559562683
},
"field_id": 7995214,
"location_type": "exact",
"text": "underlying General Liability coverage cannot contain defense costs wthin the limits; subject to Commissioner's Orders",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18876,
"end": 18887,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:153",
"confidence": {
"address": 0.0028979142662137747,
"category": 0.0009693772299215198,
"date": 0.0006144691724330187,
"email": 0.0017020863015204668,
"person_name": 0.00011797932529589161,
"phone": 0.00029518656083382666,
"price": 0.000749195518437773,
"unformatted_summary": 0.4288192391395569,
"unformatted_text": 0.020270980894565582
},
"field_id": 7995214,
"location_type": "exact",
"text": "THE EDITION",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18893,
"end": 18954,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:154",
"confidence": {
"address": 0.0013790735974907875,
"category": 0.0002811550803016871,
"date": 0.00036989222280681133,
"email": 0.0007857032469473779,
"person_name": 0.00011214659025426954,
"phone": 0.0001386615476803854,
"price": 0.0005062844138592482,
"unformatted_summary": 0.6348215937614441,
"unformatted_text": 0.010696960613131523
},
"field_id": 7995214,
"location_type": "exact",
"text": "OF THE ISO FORM OR SIMILAR FILING FOR THE UNDERLYING COVERAGE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18960,
"end": 19070,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:155",
"confidence": {
"address": 0.0030055029783397913,
"category": 0.0007766817579977214,
"date": 0.0008615748374722898,
"email": 0.0011711197439581156,
"person_name": 0.0005417140200734138,
"phone": 0.00032934173941612244,
"price": 0.0012656677281484008,
"unformatted_summary": 0.5846529603004456,
"unformatted_text": 0.03645568713545799
},
"field_id": 7995214,
"location_type": "exact",
"text": "AS ANY PRODUCT, WORK, ACCIDENT OR LOCATION BEEN EXCLUDED, UNINSURED OR SELF-INSURED FROM ANY PREVIOUS COVERAGE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19075,
"end": 19076,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:156",
"confidence": {
"address": 0.0031017910223454237,
"category": 0.0013009747490286827,
"date": 0.00044070687727071345,
"email": 0.0009819372789934278,
"person_name": 0.0004011701967101544,
"phone": 0.0006119915633462369,
"price": 0.0007197831873781979,
"unformatted_summary": 0.39951685070991516,
"unformatted_text": 0.03249943628907204
},
"field_id": 7995214,
"location_type": "exact",
"text": "/",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19085,
"end": 19100,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:157",
"confidence": {
"address": 0.0021700335200875998,
"category": 0.0009836630197241902,
"date": 0.0004986129351891577,
"email": 0.0018487493507564068,
"person_name": 0.00028779907734133303,
"phone": 0.00035232934169471264,
"price": 0.0006544995121657848,
"unformatted_summary": 0.488264799118042,
"unformatted_text": 0.03944968059659004
},
"field_id": 7995214,
"location_type": "exact",
"text": "FOR CLAIMS MADE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19257,
"end": 19308,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:158",
"confidence": {
"address": 0.0008309604017995298,
"category": 0.00008183226600522175,
"date": 0.00017724576173350215,
"email": 0.0003028253559023142,
"person_name": 0.00005117838009027764,
"phone": 0.00005603749377769418,
"price": 0.00018691728473640978,
"unformatted_summary": 0.5110275149345398,
"unformatted_text": 0.027413375675678253
},
"field_id": 7995214,
"location_type": "exact",
"text": ", WAS \"TAIL\" COVERAGE PURCHASED FOR ANY PREVIOUS PR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19310,
"end": 19327,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:159",
"confidence": {
"address": 0.0011310380650684237,
"category": 0.00010743443272076547,
"date": 0.00021036539692431688,
"email": 0.00026434820028953254,
"person_name": 0.00007965216354932636,
"phone": 0.000060871283494634554,
"price": 0.00026461060042493045,
"unformatted_summary": 0.5386939644813538,
"unformatted_text": 0.01642574556171894
},
"field_id": 7995214,
"location_type": "exact",
"text": "ARY OR EXCESS POL",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19381,
"end": 19385,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:160",
"confidence": {
"address": 0.016597282141447067,
"category": 0.0011590844951570034,
"date": 0.0014773905277252197,
"email": 0.0011006753193214536,
"person_name": 0.001467475201934576,
"phone": 0.0018961939495056868,
"price": 0.006204107776284218,
"unformatted_summary": 0.3771343529224396,
"unformatted_text": 0.015531790442764759
},
"field_id": 7995214,
"location_type": "exact",
"text": ", OR",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 19396,
"end": 19397,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:161",
"confidence": {
"address": 0.00037960594636388123,
"category": 0.01190354023128748,
"date": 0.0003390456549823284,
"email": 0.011946301907300949,
"person_name": 0.001111475983634591,
"phone": 0.0024526144843548536,
"price": 0.0008858079090714455,
"unformatted_summary": 0.26028215885162354,
"unformatted_text": 0.6864798665046692
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19402,
"end": 19417,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:162",
"confidence": {
"address": 0.0037896139547228813,
"category": 0.0004413867136463523,
"date": 0.00045972512452863157,
"email": 0.0024632359854876995,
"person_name": 0.0012964437482878566,
"phone": 0.0009189352858811617,
"price": 0.0005057675880379975,
"unformatted_summary": 0.525564968585968,
"unformatted_text": 0.02138189785182476
},
"field_id": 7995214,
"location_type": "exact",
"text": "AIN ANY SPECIAL",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19428,
"end": 19450,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:163",
"confidence": {
"address": 0.004401477985084057,
"category": 0.00042594250408001244,
"date": 0.0005346901016309857,
"email": 0.002312824595719576,
"person_name": 0.0019103408558294177,
"phone": 0.0006547103403136134,
"price": 0.0005925045115873218,
"unformatted_summary": 0.5406705141067505,
"unformatted_text": 0.01692826859652996
},
"field_id": 7995214,
"location_type": "exact",
"text": "BEYOND STANDARD FORMS.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19455,
"end": 19462,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:164",
"confidence": {
"address": 0.0038851452991366386,
"category": 0.0003623948432505131,
"date": 0.0005813597235828638,
"email": 0.003912188578397036,
"person_name": 0.001632520230486989,
"phone": 0.0013518761843442917,
"price": 0.0006779232062399387,
"unformatted_summary": 0.569577157497406,
"unformatted_text": 0.027411162853240967
},
"field_id": 7995214,
"location_type": "exact",
"text": "AIN ALL",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19984,
"end": 19996,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:166",
"confidence": {
"address": 0.004015685524791479,
"category": 0.0005843290709890425,
"date": 0.0012161176418885589,
"email": 0.0005573072703555226,
"person_name": 0.0003506096254568547,
"phone": 0.00035504522384144366,
"price": 0.0027936771512031555,
"unformatted_summary": 0.4424940049648285,
"unformatted_text": 0.025544408708810806
},
"field_id": 7995214,
"location_type": "exact",
"text": "LASER ENDORS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20002,
"end": 20013,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:167",
"confidence": {
"address": 0.004808980505913496,
"category": 0.0007159352535381913,
"date": 0.0011147265322506428,
"email": 0.00047160941176116467,
"person_name": 0.0003814611118286848,
"phone": 0.0003944261115975678,
"price": 0.0028129753191024065,
"unformatted_summary": 0.47836312651634216,
"unformatted_text": 0.029144372791051865
},
"field_id": 7995214,
"location_type": "exact",
"text": ", DISCRIMIN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20020,
"end": 20026,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:168",
"confidence": {
"address": 0.004779731389135122,
"category": 0.0010649580508470535,
"date": 0.001413170830346644,
"email": 0.0006452971138060093,
"person_name": 0.000406090373871848,
"phone": 0.00043775621452368796,
"price": 0.003072459250688553,
"unformatted_summary": 0.48674049973487854,
"unformatted_text": 0.03689376637339592
},
"field_id": 7995214,
"location_type": "exact",
"text": "SUBROG",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20032,
"end": 20060,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:169",
"confidence": {
"address": 0.007421958725899458,
"category": 0.003164268098771572,
"date": 0.005044038873165846,
"email": 0.0022212485782802105,
"person_name": 0.000391636771382764,
"phone": 0.0011061918921768665,
"price": 0.0033767521381378174,
"unformatted_summary": 0.5156412720680237,
"unformatted_text": 0.05335938557982445
},
"field_id": 7995214,
"location_type": "exact",
"text": "WAIVERS, OR EXTENSIONS OF\nCO",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20066,
"end": 20070,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:170",
"confidence": {
"address": 0.006735117174685001,
"category": 0.00506996363401413,
"date": 0.002682717051357031,
"email": 0.0013992881868034601,
"person_name": 0.0004931780276820064,
"phone": 0.0016754352254793048,
"price": 0.004335510544478893,
"unformatted_summary": 0.4079572558403015,
"unformatted_text": 0.026898633688688278
},
"field_id": 7995214,
"location_type": "exact",
"text": ") AC",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20074,
"end": 20093,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:171",
"confidence": {
"address": 0.006816570181399584,
"category": 0.006971248425543308,
"date": 0.0022392745595425367,
"email": 0.0018227987457066774,
"person_name": 0.0005334654124453664,
"phone": 0.0017034027259796858,
"price": 0.005326401442289352,
"unformatted_summary": 0.4194561839103699,
"unformatted_text": 0.021752770990133286
},
"field_id": 7995214,
"location_type": "exact",
"text": "101, Additional Rem",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20106,
"end": 20150,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:172",
"confidence": {
"address": 0.002071500290185213,
"category": 0.0009212561999447644,
"date": 0.0003963086346630007,
"email": 0.001618681475520134,
"person_name": 0.00031712785130366683,
"phone": 0.0005551742506213486,
"price": 0.0013321624137461185,
"unformatted_summary": 0.8495950698852539,
"unformatted_text": 0.02943934127688408
},
"field_id": 7995214,
"location_type": "exact",
"text": ", may be attached if more space is required.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20174,
"end": 20192,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:173",
"confidence": {
"address": 0.0015248652780428529,
"category": 0.0008928668103180826,
"date": 0.0008099105325527489,
"email": 0.0005751280696131289,
"person_name": 0.00017193220264744014,
"phone": 0.0001583029079483822,
"price": 0.0009102785843424499,
"unformatted_summary": 0.5271890759468079,
"unformatted_text": 0.00330565613694489
},
"field_id": 7995214,
"location_type": "exact",
"text": "IVE DETAILS OF ALL",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20203,
"end": 20206,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:174",
"confidence": {
"address": 0.005028330255299807,
"category": 0.004197738133370876,
"date": 0.002310160081833601,
"email": 0.0033481589052826166,
"person_name": 0.0010593158658593893,
"phone": 0.0005854741320945323,
"price": 0.0036539651919156313,
"unformatted_summary": 0.38881757855415344,
"unformatted_text": 0.013833334669470787
},
"field_id": 7995214,
"location_type": "exact",
"text": "CLA",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20208,
"end": 20219,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:175",
"confidence": {
"address": 0.007990704849362373,
"category": 0.0011590479407459497,
"date": 0.001391303027048707,
"email": 0.001652061939239502,
"person_name": 0.00022362565505318344,
"phone": 0.0002529361518099904,
"price": 0.053007613867521286,
"unformatted_summary": 0.5425523519515991,
"unformatted_text": 0.006560116074979305
},
"field_id": 7995214,
"location_type": "exact",
"text": "S EXCEEDING",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 20220,
"end": 20224,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:176",
"confidence": {
"address": 0.009043063037097454,
"category": 0.0037490876857191324,
"date": 0.0035892848391085863,
"email": 0.0007591426256112754,
"person_name": 0.00029249361250549555,
"phone": 0.0004342976026237011,
"price": 0.5937743782997131,
"unformatted_summary": 0.28456857800483704,
"unformatted_text": 0.0031614729668945074
},
"field_id": 7995217,
"location_type": "exact",
"text": "$10,",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 70,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20224,
"end": 20304,
"page_num": 6
}
],
"span_id": "58853:c:82567:idx:177",
"confidence": {
"address": 0.013589066453278065,
"category": 0.001372140715830028,
"date": 0.00542750209569931,
"email": 0.001438369625248015,
"person_name": 0.00036031552008353174,
"phone": 0.000320759485475719,
"price": 0.01896500028669834,
"unformatted_summary": 0.6494767665863037,
"unformatted_text": 0.0064594014547765255
},
"field_id": 7995214,
"location_type": "exact",
"text": "000 OR OCCURRENCES THAT MAY GIVE RISE TO CLAIMS, DURING THE PAST FIVE (5) YEARS,",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20818,
"end": 20854,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:178",
"confidence": {
"address": 0.0007429288234561682,
"category": 0.0005449045565910637,
"date": 0.0005272520356811583,
"email": 0.0004514385072980076,
"person_name": 0.00016714948287699372,
"phone": 0.00043387876939959824,
"price": 0.0005975082167424262,
"unformatted_summary": 0.42524129152297974,
"unformatted_text": 0.038068145513534546
},
"field_id": 7995214,
"location_type": "exact",
"text": "DOES APPLICANT OWN / LEASE / OPERATE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20887,
"end": 20951,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:179",
"confidence": {
"address": 0.0009383100550621748,
"category": 0.00047090224688872695,
"date": 0.0005519402911886573,
"email": 0.0006480217562057078,
"person_name": 0.00010728024790296331,
"phone": 0.00019139045616611838,
"price": 0.0007236903766170144,
"unformatted_summary": 0.5966707468032837,
"unformatted_text": 0.013999315910041332
},
"field_id": 7995214,
"location_type": "exact",
"text": "EXPLOSIVES, CAUSTICS, FLAMMABLES OR OTHER DANGEROUS CARGO HAULED",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20960,
"end": 20988,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:180",
"confidence": {
"address": 0.0012848125770688057,
"category": 0.0009859312558546662,
"date": 0.000535098894033581,
"email": 0.0020462367683649063,
"person_name": 0.00024482462322339416,
"phone": 0.0002186086494475603,
"price": 0.0015685934340581298,
"unformatted_summary": 0.6206015348434448,
"unformatted_text": 0.034737344831228256
},
"field_id": 7995214,
"location_type": "exact",
"text": "PASSENGERS CARRIED FOR A FEE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20997,
"end": 21037,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:181",
"confidence": {
"address": 0.0018254562746733427,
"category": 0.000669990258757025,
"date": 0.0007352464599534869,
"email": 0.001805237727239728,
"person_name": 0.0001634270593058318,
"phone": 0.00021327935974113643,
"price": 0.0014842728851363063,
"unformatted_summary": 0.615935742855072,
"unformatted_text": 0.025930194184184074
},
"field_id": 7995214,
"location_type": "exact",
"text": "UNITS NOT INSURED BY UNDERLYING POLICIES",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21076,
"end": 21085,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:182",
"confidence": {
"address": 0.0015214699087664485,
"category": 0.0008481090189889073,
"date": 0.0017827785341069102,
"email": 0.0022279927507042885,
"person_name": 0.00019380063167773187,
"phone": 0.00029883903334848583,
"price": 0.0022633098997175694,
"unformatted_summary": 0.5905253291130066,
"unformatted_text": 0.01759415492415428
},
"field_id": 7995214,
"location_type": "exact",
"text": "TO OTHERS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21176,
"end": 21182,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:183",
"confidence": {
"address": 0.006506620906293392,
"category": 0.003552862675860524,
"date": 0.0010297494009137154,
"email": 0.0032174233347177505,
"person_name": 0.0009262127568945289,
"phone": 0.0003740300890058279,
"price": 0.0015978602459654212,
"unformatted_summary": 0.3822529911994934,
"unformatted_text": 0.07335630059242249
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR MAR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21239,
"end": 21320,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:184",
"confidence": {
"address": 0.0011159518035128713,
"category": 0.0017869038274511695,
"date": 0.0005433030892163515,
"email": 0.006045887246727943,
"person_name": 0.0005220093298703432,
"phone": 0.0004242042195983231,
"price": 0.0013015271397307515,
"unformatted_summary": 0.7603626251220703,
"unformatted_text": 0.001214610761962831
},
"field_id": 7995214,
"location_type": "exact",
"text": "ACORD 101, Additional Remarks Schedule, may be attached if more space is required",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 21324,
"end": 21325,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:185",
"confidence": {
"address": 0.00030589307425543666,
"category": 0.0070115611888468266,
"date": 0.00026153246290050447,
"email": 0.014196631498634815,
"person_name": 0.0003775200748350471,
"phone": 0.0016505162930116057,
"price": 0.0006724070408381522,
"unformatted_summary": 0.45141443610191345,
"unformatted_text": 0.5061467885971069
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21346,
"end": 21427,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:186",
"confidence": {
"address": 0.0012960957828909159,
"category": 0.0015916572883725166,
"date": 0.0006679079961031675,
"email": 0.009472080506384373,
"person_name": 0.0006653530872426927,
"phone": 0.0005550038767978549,
"price": 0.0012943950714543462,
"unformatted_summary": 0.7241330742835999,
"unformatted_text": 0.00202592252753675
},
"field_id": 7995214,
"location_type": "exact",
"text": "ACORD 101, Additional Remarks Schedule, may be attached if more space is required",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21448,
"end": 21482,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:187",
"confidence": {
"address": 0.0007449407130479813,
"category": 0.000058945206546923146,
"date": 0.0008846735581755638,
"email": 0.0006321073160506785,
"person_name": 0.00011244549386901781,
"phone": 0.0000937547447392717,
"price": 0.0026763486675918102,
"unformatted_summary": 0.7799482345581055,
"unformatted_text": 0.008854017592966557
},
"field_id": 7995214,
"location_type": "exact",
"text": "OWN, RENT, OR OTHERWISE USE CRANES",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 21486,
"end": 21487,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:188",
"confidence": {
"address": 0.00018406538583803922,
"category": 0.003928471822291613,
"date": 0.00017183242016471922,
"email": 0.0056839738972485065,
"person_name": 0.000250201701419428,
"phone": 0.0009457798441872001,
"price": 0.000488520076032728,
"unformatted_summary": 0.45413199067115784,
"unformatted_text": 0.5127257108688354
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21488,
"end": 21517,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:189",
"confidence": {
"address": 0.0003780931874644011,
"category": 0.000040190163417719305,
"date": 0.0003821491845883429,
"email": 0.000558120955247432,
"person_name": 0.00007626161095686257,
"phone": 0.000054545940656680614,
"price": 0.0005481234984472394,
"unformatted_summary": 0.7475473880767822,
"unformatted_text": 0.007636465132236481
},
"field_id": 7995214,
"location_type": "exact",
"text": "DO SUBCONTRACTORS CARRY COVER",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21522,
"end": 21528,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:190",
"confidence": {
"address": 0.001991444267332554,
"category": 0.00012872966181021184,
"date": 0.0009325077407993376,
"email": 0.000643514038529247,
"person_name": 0.0002113384398398921,
"phone": 0.00023072517069522291,
"price": 0.0018920833244919777,
"unformatted_summary": 0.47187021374702454,
"unformatted_text": 0.006304893642663956
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR LIM",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21532,
"end": 21551,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:191",
"confidence": {
"address": 0.0010931689757853746,
"category": 0.0000558585197723005,
"date": 0.0005101558053866029,
"email": 0.0005141806905157864,
"person_name": 0.00014783295046072453,
"phone": 0.00010563767864368856,
"price": 0.0007657667738385499,
"unformatted_summary": 0.7090126872062683,
"unformatted_text": 0.00943684671074152
},
"field_id": 7995214,
"location_type": "exact",
"text": "LESS THAN APPLICANT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21553,
"end": 21562,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:192",
"confidence": {
"address": 0.001063322531990707,
"category": 0.00018195896700490266,
"date": 0.0004573152109514922,
"email": 0.0023725093342363834,
"person_name": 0.0005512233474291861,
"phone": 0.0004598863306455314,
"price": 0.0006579094333574176,
"unformatted_summary": 0.669987142086029,
"unformatted_text": 0.057068414986133575
},
"field_id": 7995214,
"location_type": "exact",
"text": "EMPLOYERS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21577,
"end": 21586,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:193",
"confidence": {
"address": 0.0017455059569329023,
"category": 0.0003237048804294318,
"date": 0.0017158681293949485,
"email": 0.002904503606259823,
"person_name": 0.0001567266881465912,
"phone": 0.00014561048010364175,
"price": 0.001486732391640544,
"unformatted_summary": 0.42962098121643066,
"unformatted_text": 0.02762688510119915
},
"field_id": 7995214,
"location_type": "exact",
"text": "IS APPLIC",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21590,
"end": 21600,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:194",
"confidence": {
"address": 0.003745823632925749,
"category": 0.0016879603499546647,
"date": 0.00425662100315094,
"email": 0.002332988427951932,
"person_name": 0.0003562438068911433,
"phone": 0.00031989472336135805,
"price": 0.001800707308575511,
"unformatted_summary": 0.4961535930633545,
"unformatted_text": 0.014251689426600933
},
"field_id": 7995214,
"location_type": "exact",
"text": "SELF-INSUR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21603,
"end": 21615,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:195",
"confidence": {
"address": 0.007749171461910009,
"category": 0.0010895715095102787,
"date": 0.0071338750422000885,
"email": 0.002339575905352831,
"person_name": 0.0008717487216927111,
"phone": 0.00021918589482083917,
"price": 0.005358447786420584,
"unformatted_summary": 0.6428660154342651,
"unformatted_text": 0.030313419178128242
},
"field_id": 7995214,
"location_type": "exact",
"text": "IN ANY STATE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21643,
"end": 21646,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:196",
"confidence": {
"address": 0.0011379629140719771,
"category": 0.0015513220569118857,
"date": 0.0006168116233311594,
"email": 0.0004977100761607289,
"person_name": 0.0001904482487589121,
"phone": 0.00007057240145513788,
"price": 0.0005690013058483601,
"unformatted_summary": 0.3860572278499603,
"unformatted_text": 0.01727442443370819
},
"field_id": 7995214,
"location_type": "exact",
"text": "FEL",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21648,
"end": 21650,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:197",
"confidence": {
"address": 0.0009963279590010643,
"category": 0.0012973521370440722,
"date": 0.0008061012485995889,
"email": 0.0006699584191665053,
"person_name": 0.00007900901255197823,
"phone": 0.00016477781173307449,
"price": 0.0004144227132201195,
"unformatted_summary": 0.3649250864982605,
"unformatted_text": 0.020189717411994934
},
"field_id": 7995214,
"location_type": "exact",
"text": "ST",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 21751,
"end": 21752,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:198",
"confidence": {
"address": 0.0002160914009436965,
"category": 0.010234425775706768,
"date": 0.0005123565788380802,
"email": 0.0747268944978714,
"person_name": 0.0011029340093955398,
"phone": 0.0025359923020005226,
"price": 0.0010177150834351778,
"unformatted_summary": 0.2583666145801544,
"unformatted_text": 0.28675922751426697
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 21882,
"end": 21883,
"page_num": 7
}
],
"span_id": "58853:c:82567:idx:199",
"confidence": {
"address": 0.0006338987732306123,
"category": 0.00032230481156148016,
"date": 0.7772066593170166,
"email": 0.00024142462643794715,
"person_name": 0.00020113997743465006,
"phone": 0.00001460614748793887,
"price": 0.0013298148987814784,
"unformatted_summary": 0.0042730895802378654,
"unformatted_text": 0.0002047193847829476
},
"field_id": 7995216,
"location_type": "exact",
"text": "/",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 87,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "price",
"spans": [
{
"start": 21956,
"end": 21957,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:200",
"confidence": {
"address": 0.0059900106862187386,
"category": 0.006419091951102018,
"date": 0.11469189077615738,
"email": 0.0070459600538015366,
"person_name": 0.0006409960333257914,
"phone": 0.013037947937846184,
"price": 0.41551825404167175,
"unformatted_summary": 0.051326267421245575,
"unformatted_text": 0.0018317349022254348
},
"field_id": 7995217,
"location_type": "exact",
"text": "8",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 88,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21998,
"end": 22003,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:201",
"confidence": {
"address": 0.0002487720048520714,
"category": 0.00011771618301281705,
"date": 0.00021896176622249186,
"email": 0.0005624157493002713,
"person_name": 0.00003819410994765349,
"phone": 0.00007944197568576783,
"price": 0.0005998039850965142,
"unformatted_summary": 0.45297932624816895,
"unformatted_text": 0.0009463203605264425
},
"field_id": 7995214,
"location_type": "exact",
"text": "OTHER",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22091,
"end": 22099,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:202",
"confidence": {
"address": 0.003448375966399908,
"category": 0.00029571421328000724,
"date": 0.0016948325792327523,
"email": 0.0006146477535367012,
"person_name": 0.00012729913578368723,
"phone": 0.0007648186874575913,
"price": 0.000690871849656105,
"unformatted_summary": 0.5810816287994385,
"unformatted_text": 0.01351580023765564
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR THEIR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22106,
"end": 22129,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:203",
"confidence": {
"address": 0.0017813872545957565,
"category": 0.00022278589312918484,
"date": 0.001402112189680338,
"email": 0.0003554168506525457,
"person_name": 0.00011206476483494043,
"phone": 0.0005834078183397651,
"price": 0.00026888170395977795,
"unformatted_summary": 0.4226391911506653,
"unformatted_text": 0.015518171712756157
},
"field_id": 7995214,
"location_type": "exact",
"text": "ENTS, CONTAIN HAZARDOUS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22138,
"end": 22156,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:204",
"confidence": {
"address": 0.0024086686316877604,
"category": 0.00018554291455075145,
"date": 0.0013658922398462892,
"email": 0.00041305055492557585,
"person_name": 0.00012262733071111143,
"phone": 0.000600540719460696,
"price": 0.00020792549184989184,
"unformatted_summary": 0.39084571599960327,
"unformatted_text": 0.01832002028822899
},
"field_id": 7995214,
"location_type": "exact",
"text": "S THAT MAY REQUIRE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22165,
"end": 22173,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:205",
"confidence": {
"address": 0.0014510871842503548,
"category": 0.00015697571507189423,
"date": 0.0006390084163285792,
"email": 0.0004279328277334571,
"person_name": 0.00011153418745379895,
"phone": 0.0003328117309138179,
"price": 0.00014061758702155203,
"unformatted_summary": 0.42142626643180847,
"unformatted_text": 0.015384113416075706
},
"field_id": 7995214,
"location_type": "exact",
"text": "DISPOSAL",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22407,
"end": 22410,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:206",
"confidence": {
"address": 0.0033466133754700422,
"category": 0.00502217561006546,
"date": 0.0020640550646930933,
"email": 0.004500063136219978,
"person_name": 0.00113166484516114,
"phone": 0.002529164543375373,
"price": 0.002749490551650524,
"unformatted_summary": 0.3282262980937958,
"unformatted_text": 0.04741118848323822
},
"field_id": 7995214,
"location_type": "exact",
"text": "ENG",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22416,
"end": 22420,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:207",
"confidence": {
"address": 0.002658423036336899,
"category": 0.007080158684402704,
"date": 0.0031023090705275536,
"email": 0.002781324554234743,
"person_name": 0.001110320445150137,
"phone": 0.0012939630541950464,
"price": 0.0026698498986661434,
"unformatted_summary": 0.433106929063797,
"unformatted_text": 0.06213017553091049
},
"field_id": 7995214,
"location_type": "exact",
"text": "GUID",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22434,
"end": 22440,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:208",
"confidence": {
"address": 0.003583103185519576,
"category": 0.0034039998427033424,
"date": 0.0022528960835188627,
"email": 0.003048679092898965,
"person_name": 0.0006507909274660051,
"phone": 0.0012222398072481155,
"price": 0.0021426205057650805,
"unformatted_summary": 0.4952428936958313,
"unformatted_text": 0.047465670853853226
},
"field_id": 7995214,
"location_type": "exact",
"text": "FRAMES",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22448,
"end": 22453,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:209",
"confidence": {
"address": 0.002058264799416065,
"category": 0.000541075540240854,
"date": 0.0019558751955628395,
"email": 0.0020945093128830194,
"person_name": 0.0003354901564307511,
"phone": 0.00015232886653393507,
"price": 0.0015518590807914734,
"unformatted_summary": 0.49320662021636963,
"unformatted_text": 0.026620395481586456
},
"field_id": 7995214,
"location_type": "exact",
"text": "OTHER",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22469,
"end": 22473,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:210",
"confidence": {
"address": 0.002006336348131299,
"category": 0.0017065010033547878,
"date": 0.0043470775708556175,
"email": 0.0032470787409693003,
"person_name": 0.0003085655625909567,
"phone": 0.000731184845790267,
"price": 0.0056623960845172405,
"unformatted_summary": 0.3121902048587799,
"unformatted_text": 0.10525579005479813
},
"field_id": 7995214,
"location_type": "exact",
"text": "INST",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22840,
"end": 22850,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:211",
"confidence": {
"address": 0.001088739838451147,
"category": 0.0026498057413846254,
"date": 0.0004518365894909948,
"email": 0.004545319825410843,
"person_name": 0.00008665133645990863,
"phone": 0.00008052673365455121,
"price": 0.0024891099892556667,
"unformatted_summary": 0.3480742871761322,
"unformatted_text": 0.0003271384921390563
},
"field_id": 7995214,
"location_type": "exact",
"text": "Additional",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22867,
"end": 22875,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:212",
"confidence": {
"address": 0.0011896047508344054,
"category": 0.0025428810622543097,
"date": 0.001136082923039794,
"email": 0.006492093671113253,
"person_name": 0.00012552517000585794,
"phone": 0.00022979792265687138,
"price": 0.0027323535177856684,
"unformatted_summary": 0.43796977400779724,
"unformatted_text": 0.0005975813255645335
},
"field_id": 7995214,
"location_type": "exact",
"text": ", may be",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22885,
"end": 22910,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:213",
"confidence": {
"address": 0.0003565364168025553,
"category": 0.00032363858190365136,
"date": 0.0002588962088339031,
"email": 0.0019083886872977018,
"person_name": 0.00010412441042717546,
"phone": 0.00003786858724197373,
"price": 0.000585840898565948,
"unformatted_summary": 0.7251124382019043,
"unformatted_text": 0.0004409830435179174
},
"field_id": 7995214,
"location_type": "exact",
"text": "if more space is required",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23270,
"end": 23295,
"page_num": 8
}
],
"span_id": "58853:c:82567:idx:214",
"confidence": {
"address": 0.0010117912897840142,
"category": 0.0004289984644856304,
"date": 0.0002173657267121598,
"email": 0.0029568944592028856,
"person_name": 0.00020550648332573473,
"phone": 0.00016463272913824767,
"price": 0.0006015870021656156,
"unformatted_summary": 0.6648569107055664,
"unformatted_text": 0.001965038478374481
},
"field_id": 7995214,
"location_type": "exact",
"text": "if more space is required",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23424,
"end": 23700,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:215",
"confidence": {
"address": 0.0014648953219875693,
"category": 0.001062439871020615,
"date": 0.0005514580989256501,
"email": 0.0018515170086175203,
"person_name": 0.00033096675178967416,
"phone": 0.0001734186807880178,
"price": 0.0028302459977567196,
"unformatted_summary": 0.8635390996932983,
"unformatted_text": 0.017979251220822334
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly (or willfully)* presents a false or fraudulent\nclaim for payment of a loss or benefit or knowingly (or willfully)* presents false information in an application for insurance is\nguilty of a crime and may be subject to fines and confinement in prison. *",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23708,
"end": 23719,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:216",
"confidence": {
"address": 0.0058608390390872955,
"category": 0.06526385992765427,
"date": 0.0015603388892486691,
"email": 0.008984889835119247,
"person_name": 0.0027123000472784042,
"phone": 0.001532965456135571,
"price": 0.005833945702761412,
"unformatted_summary": 0.3895983099937439,
"unformatted_text": 0.15032434463500977
},
"field_id": 7995214,
"location_type": "exact",
"text": "in MD Only.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23731,
"end": 23733,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:217",
"confidence": {
"address": 0.006437306758016348,
"category": 0.04157111793756485,
"date": 0.0011641565943136811,
"email": 0.003431580727919936,
"person_name": 0.0031359526328742504,
"phone": 0.0013689514016732574,
"price": 0.015455970540642738,
"unformatted_summary": 0.42238515615463257,
"unformatted_text": 0.06074275076389313
},
"field_id": 7995214,
"location_type": "exact",
"text": "in",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23738,
"end": 23919,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:218",
"confidence": {
"address": 0.0004168623127043247,
"category": 0.0005717573221772909,
"date": 0.000388415006455034,
"email": 0.001034903689287603,
"person_name": 0.00015230744611471891,
"phone": 0.0001303882454521954,
"price": 0.0006088482914492488,
"unformatted_summary": 0.9479089975357056,
"unformatted_text": 0.012684919871389866
},
"field_id": 7995214,
"location_type": "exact",
"text": "It is unlawful to knowingly provide false, incomplete, or misleading facts or information to an insurance\ncompany for the purpose of defrauding or attempting to defraud the company.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23930,
"end": 24418,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:219",
"confidence": {
"address": 0.002881828462705016,
"category": 0.0025066379457712173,
"date": 0.0007249612826853991,
"email": 0.00266731483861804,
"person_name": 0.0011999583803117275,
"phone": 0.0005694439169019461,
"price": 0.008741798810660839,
"unformatted_summary": 0.8896767497062683,
"unformatted_text": 0.014001613482832909
},
"field_id": 7995214,
"location_type": "exact",
"text": "may include imprisonment, fines,\ndenial of insurance and civil damages. Any insurance company or agent of an insurance company who knowingly provides\nfalse, incomplete, or misleading facts or information to a policyholder or claimant for the purpose of defrauding or attempting to\ndefraud the policyholder or claimant with regard to a settlement or award payable from insurance proceeds shall be reported to\nthe Colorado Division of Insurance within the Department of Regulatory Agencies.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 24430,
"end": 24442,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:220",
"confidence": {
"address": 0.0059734005481004715,
"category": 0.025493556633591652,
"date": 0.0009384951554238796,
"email": 0.00305394665338099,
"person_name": 0.0016306991456076503,
"phone": 0.0013000492472201586,
"price": 0.019966190680861473,
"unformatted_summary": 0.5824072360992432,
"unformatted_text": 0.025391219183802605
},
"field_id": 7995214,
"location_type": "exact",
"text": "in FL and OK",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 24444,
"end": 24680,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:221",
"confidence": {
"address": 0.0006545208161696792,
"category": 0.0008065615547820926,
"date": 0.00039228759123943746,
"email": 0.0011381030781194568,
"person_name": 0.00026500329840928316,
"phone": 0.00011542446736712009,
"price": 0.0011200590524822474,
"unformatted_summary": 0.9555290937423706,
"unformatted_text": 0.010042956098914146
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to injure, defraud, or deceive any insurer files a\nstatement of claim or an application containing any false, incomplete, or misleading information is guilty of a felony (of the\nthird degree)*. *",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 24688,
"end": 24699,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:222",
"confidence": {
"address": 0.0027690837159752846,
"category": 0.020640384405851364,
"date": 0.00043413834646344185,
"email": 0.00330254714936018,
"person_name": 0.0016020142938941717,
"phone": 0.0009461352601647377,
"price": 0.006150586996227503,
"unformatted_summary": 0.562279462814331,
"unformatted_text": 0.0645841434597969
},
"field_id": 7995214,
"location_type": "exact",
"text": "in FL Only.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 24711,
"end": 24716,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:223",
"confidence": {
"address": 0.002045365748926997,
"category": 0.011939958669245243,
"date": 0.00035825191298499703,
"email": 0.00206590723246336,
"person_name": 0.0009676901390776038,
"phone": 0.00041710978257469833,
"price": 0.007355900015681982,
"unformatted_summary": 0.4887968897819519,
"unformatted_text": 0.014077098108828068
},
"field_id": 7995214,
"location_type": "exact",
"text": "in KS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 24718,
"end": 25547,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:224",
"confidence": {
"address": 0.0007905590464361012,
"category": 0.0007287123589776456,
"date": 0.00045479359687305987,
"email": 0.0009306548163294792,
"person_name": 0.0001853821740951389,
"phone": 0.00009027312626130879,
"price": 0.002440119395032525,
"unformatted_summary": 0.9342201948165894,
"unformatted_text": 0.013075441122055054
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who, knowingly and with intent to defraud, presents, causes to be presented or prepares with\nknowledge or belief that it will be presented to or by an insurer, purported insurer, broker or any agent thereof, any written,\nelectronic, electronic impulse, facsimile, magnetic, oral, or telephonic communication or statement as part of, or in support of,\nan application for the issuance of, or the rating of an insurance policy for personal or commercial insurance, or a claim for\npayment or other benefit pursuant to an insurance policy for commercial or personal insurance which such person knows to\ncontain materially false information concerning any fact material thereto; or conceals, for the purpose of misleading, information\nconcerning any fact material thereto commits a fraudulent insurance act.\nApplicable in KY",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 25549,
"end": 25551,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:225",
"confidence": {
"address": 0.19504548609256744,
"category": 0.03285703435540199,
"date": 0.023805109784007072,
"email": 0.03645609691739082,
"person_name": 0.009601711295545101,
"phone": 0.006739174015820026,
"price": 0.28036344051361084,
"unformatted_summary": 0.1474168747663498,
"unformatted_text": 0.03426196798682213
},
"field_id": 7995217,
"location_type": "exact",
"text": "NY",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 101,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 25556,
"end": 25562,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:227",
"confidence": {
"address": 0.06024768576025963,
"category": 0.03677148371934891,
"date": 0.011935034766793251,
"email": 0.02470889873802662,
"person_name": 0.007048857398331165,
"phone": 0.004512423649430275,
"price": 0.1496323198080063,
"unformatted_summary": 0.3054671883583069,
"unformatted_text": 0.043338626623153687
},
"field_id": 7995214,
"location_type": "exact",
"text": "and PA",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 25564,
"end": 26055,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:228",
"confidence": {
"address": 0.001978823449462652,
"category": 0.0007742166053503752,
"date": 0.00032527465373277664,
"email": 0.002415949944406748,
"person_name": 0.0002740299969445914,
"phone": 0.00021844790899194777,
"price": 0.027535799890756607,
"unformatted_summary": 0.8942618370056152,
"unformatted_text": 0.012752496637403965
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to defraud any insurance company or other\nperson files an application for insurance or statement of claim containing any materially false information or conceals for the\npurpose of misleading, information concerning any fact material thereto commits a fraudulent insurance act, which is a crime\nand subjects such person to criminal and civil penalties* (not to exceed five thousand dollars and the stated value of the claim\nfor each such violation)*.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26068,
"end": 26070,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:229",
"confidence": {
"address": 0.09642212837934494,
"category": 0.0690993145108223,
"date": 0.0015177763998508453,
"email": 0.08559750020503998,
"person_name": 0.018962901085615158,
"phone": 0.004148976411670446,
"price": 0.14249396324157715,
"unformatted_summary": 0.3259331285953522,
"unformatted_text": 0.03295951336622238
},
"field_id": 7995214,
"location_type": "exact",
"text": "NY",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26075,
"end": 26076,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:230",
"confidence": {
"address": 0.0005230153910815716,
"category": 0.009023087099194527,
"date": 0.00039463609573431313,
"email": 0.00805843248963356,
"person_name": 0.00087233807425946,
"phone": 0.0018946346826851368,
"price": 0.001365362317301333,
"unformatted_summary": 0.502697765827179,
"unformatted_text": 0.4713338315486908
},
"field_id": 7995214,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 26095,
"end": 26097,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:231",
"confidence": {
"address": 0.14246314764022827,
"category": 0.1317407637834549,
"date": 0.02001531794667244,
"email": 0.024894265457987785,
"person_name": 0.00787167064845562,
"phone": 0.006201591808348894,
"price": 0.165068581700325,
"unformatted_summary": 0.15475556254386902,
"unformatted_text": 0.057549767196178436
},
"field_id": 7995217,
"location_type": "exact",
"text": "TN",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 103,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26102,
"end": 26105,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:232",
"confidence": {
"address": 0.040572673082351685,
"category": 0.05331224203109741,
"date": 0.008984728716313839,
"email": 0.009138481691479683,
"person_name": 0.0050016711466014385,
"phone": 0.0025941990315914154,
"price": 0.07690417021512985,
"unformatted_summary": 0.3909570276737213,
"unformatted_text": 0.048278383910655975
},
"field_id": 7995214,
"location_type": "exact",
"text": "and",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26113,
"end": 26255,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:233",
"confidence": {
"address": 0.0007621973636560142,
"category": 0.0008502014679834247,
"date": 0.00035313694388605654,
"email": 0.0018379061948508024,
"person_name": 0.0001912876032292843,
"phone": 0.00012436749238986522,
"price": 0.0007623219862580299,
"unformatted_summary": 0.9107645153999329,
"unformatted_text": 0.016427481546998024
},
"field_id": 7995214,
"location_type": "exact",
"text": "is a crime to knowingly provide false, incomplete or misleading information to an\ninsurance company for the purpose of defrauding the company.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26266,
"end": 26334,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:234",
"confidence": {
"address": 0.006649880204349756,
"category": 0.006061148829758167,
"date": 0.004376167431473732,
"email": 0.010845547541975975,
"person_name": 0.0047337873838841915,
"phone": 0.0023686618078500032,
"price": 0.01846938021481037,
"unformatted_summary": 0.5477637052536011,
"unformatted_text": 0.02893281728029251
},
"field_id": 7995214,
"location_type": "exact",
"text": "(may)* include imprisonment, fines and denial of\ninsurance benefits.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26344,
"end": 26355,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:235",
"confidence": {
"address": 0.010274127125740051,
"category": 0.026838265359401703,
"date": 0.0013082160148769617,
"email": 0.01612536609172821,
"person_name": 0.0066085318103432655,
"phone": 0.0017780305352061987,
"price": 0.009334918111562729,
"unformatted_summary": 0.4456223249435425,
"unformatted_text": 0.12724891304969788
},
"field_id": 7995214,
"location_type": "exact",
"text": "in ME Only.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26374,
"end": 26519,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:236",
"confidence": {
"address": 0.0016859896713867784,
"category": 0.001242535188794136,
"date": 0.0004428256943356246,
"email": 0.0027647644747048616,
"person_name": 0.00039673809078522027,
"phone": 0.00022701160924043506,
"price": 0.002655552001670003,
"unformatted_summary": 0.9116030335426331,
"unformatted_text": 0.018217872828245163
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who includes any false or misleading information on an application for an insurance policy is\nsubject to criminal and civil penalties.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26538,
"end": 26741,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:237",
"confidence": {
"address": 0.00045405063428916037,
"category": 0.0002952501527033746,
"date": 0.00026094939676113427,
"email": 0.001210249261930585,
"person_name": 0.00020876519556622952,
"phone": 0.00010099003702634946,
"price": 0.0008546686731278896,
"unformatted_summary": 0.9450638294219971,
"unformatted_text": 0.016298411414027214
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to defraud or solicit another to defraud the insurer by submitting\nan application containing a false statement as to any material fact may be violating state law.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26760,
"end": 27159,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:238",
"confidence": {
"address": 0.0024864294100552797,
"category": 0.001113062258809805,
"date": 0.0004995021154172719,
"email": 0.0032574927899986506,
"person_name": 0.000694550049956888,
"phone": 0.0004218471876811236,
"price": 0.01883683167397976,
"unformatted_summary": 0.8989108800888062,
"unformatted_text": 0.03987714275717735
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with the intention of defrauding presents false information in an insurance\napplication, or presents, helps, or causes the presentation of a fraudulent claim for the payment of a loss or any other benefit,\nor presents more than one claim for the same damage or loss, shall incur a felony and, upon conviction, shall be sanctioned for\neach violation by a fine of not less",
"groupings": []
},
{
"label": "price",
"spans": [
{
"start": 27160,
"end": 27243,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:239",
"confidence": {
"address": 0.002370134461671114,
"category": 0.003227856708690524,
"date": 0.0006127423839643598,
"email": 0.0029947832226753235,
"person_name": 0.0005179477157071233,
"phone": 0.0012440436985343695,
"price": 0.8369229435920715,
"unformatted_summary": 0.1385692059993744,
"unformatted_text": 0.0014748418470844626
},
"field_id": 7995217,
"location_type": "exact",
"text": "than five thousand dollars ($5,000) and not more than ten thousand dollars ($10,000",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 107,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27243,
"end": 27350,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:240",
"confidence": {
"address": 0.007801839150488377,
"category": 0.0038718406576663256,
"date": 0.0068544442765414715,
"email": 0.009280209429562092,
"person_name": 0.0021537747234106064,
"phone": 0.000812578306067735,
"price": 0.028551287949085236,
"unformatted_summary": 0.7067402005195618,
"unformatted_text": 0.059971585869789124
},
"field_id": 7995214,
"location_type": "exact",
"text": "), or a\nfixed term of imprisonment for three (3) years, or both penalties. Should aggravating circumstances",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 27351,
"end": 27352,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:241",
"confidence": {
"address": 0.0019422487821429968,
"category": 0.00047715016989968717,
"date": 0.0005080051487311721,
"email": 0.008346855640411377,
"person_name": 0.0030890111811459064,
"phone": 0.0008756406023167074,
"price": 0.001221741084009409,
"unformatted_summary": 0.3651179373264313,
"unformatted_text": 0.3915380835533142
},
"field_id": 7995213,
"location_type": "exact",
"text": "[",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27352,
"end": 27376,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:242",
"confidence": {
"address": 0.0053588091395795345,
"category": 0.0004890470881946385,
"date": 0.001231310423463583,
"email": 0.004610106348991394,
"person_name": 0.0022980438079684973,
"phone": 0.0003557979071047157,
"price": 0.0017161605646833777,
"unformatted_summary": 0.4946315586566925,
"unformatted_text": 0.21455609798431396
},
"field_id": 7995214,
"location_type": "exact",
"text": "be] present, the penalty",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 27377,
"end": 27381,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:243",
"confidence": {
"address": 0.004458281677216291,
"category": 0.000479284324683249,
"date": 0.001461752108298242,
"email": 0.018961209803819656,
"person_name": 0.0015937050338834524,
"phone": 0.00034913563285954297,
"price": 0.00100762490183115,
"unformatted_summary": 0.2056015580892563,
"unformatted_text": 0.6617282032966614
},
"field_id": 7995213,
"location_type": "exact",
"text": "thus",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27382,
"end": 27494,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:244",
"confidence": {
"address": 0.008633840829133987,
"category": 0.00021441020362544805,
"date": 0.002224165480583906,
"email": 0.013308100402355194,
"person_name": 0.003629997605457902,
"phone": 0.0005863520782440901,
"price": 0.008602223359048367,
"unformatted_summary": 0.6320632696151733,
"unformatted_text": 0.10435878485441208
},
"field_id": 7995214,
"location_type": "exact",
"text": "established may be increased to a maximum of five (5) years, if extenuating circumstances are present, it may be",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27503,
"end": 27533,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:245",
"confidence": {
"address": 0.011995718814432621,
"category": 0.0013976636109873652,
"date": 0.005199038423597813,
"email": 0.014396680518984795,
"person_name": 0.006944120861589909,
"phone": 0.0012894788524135947,
"price": 0.012013310566544533,
"unformatted_summary": 0.576032280921936,
"unformatted_text": 0.053292833268642426
},
"field_id": 7995214,
"location_type": "exact",
"text": "to a minimum of two (2) years.",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 27544,
"end": 27553,
"page_num": 9
}
],
"span_id": "58853:c:82567:idx:246",
"confidence": {
"address": 0.04600417613983154,
"category": 0.0133734792470932,
"date": 0.7668664455413818,
"email": 0.001868772553279996,
"person_name": 0.004031418822705746,
"phone": 0.00030897167744114995,
"price": 0.004970882087945938,
"unformatted_summary": 0.03896603360772133,
"unformatted_text": 0.0026760243345052004
},
"field_id": 7995216,
"location_type": "exact",
"text": "(2017/11)",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 111,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 27586,
"end": 27594,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:247",
"confidence": {
"address": 0.007191665470600128,
"category": 0.0043925023637712,
"date": 0.42266395688056946,
"email": 0.0024510808289051056,
"person_name": 0.0007867521489970386,
"phone": 0.00438679987564683,
"price": 0.3686720132827759,
"unformatted_summary": 0.04772553965449333,
"unformatted_text": 0.0007856626180000603
},
"field_id": 7995216,
"location_type": "exact",
"text": "00008653",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 112,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27608,
"end": 27659,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:248",
"confidence": {
"address": 0.002389573724940419,
"category": 0.0009491211385466158,
"date": 0.0013659560354426503,
"email": 0.001333274645730853,
"person_name": 0.00009369584586238489,
"phone": 0.00011241931497352198,
"price": 0.0014899830566719174,
"unformatted_summary": 0.7972426414489746,
"unformatted_text": 0.005006247665733099
},
"field_id": 7995214,
"location_type": "exact",
"text": "THE COMPANY TO WHICH I AM APPLYING OFFERS UNINSURED",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27947,
"end": 27954,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:249",
"confidence": {
"address": 0.024174652993679047,
"category": 0.005470531526952982,
"date": 0.0008473023772239685,
"email": 0.007779114879667759,
"person_name": 0.002794346772134304,
"phone": 0.000839908723719418,
"price": 0.008913004770874977,
"unformatted_summary": 0.4168957769870758,
"unformatted_text": 0.01715702936053276
},
"field_id": 7995214,
"location_type": "exact",
"text": "AND VER",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27959,
"end": 27987,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:250",
"confidence": {
"address": 0.011097189970314503,
"category": 0.001880601397715509,
"date": 0.0006094067939557135,
"email": 0.0053177508525550365,
"person_name": 0.002465072786435485,
"phone": 0.0003406405739951879,
"price": 0.005388860125094652,
"unformatted_summary": 0.6387208104133606,
"unformatted_text": 0.013128668069839478
},
"field_id": 7995214,
"location_type": "exact",
"text": "APPLICABLE ONLY IN LOUISIANA",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27989,
"end": 27993,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:251",
"confidence": {
"address": 0.009579172357916832,
"category": 0.0009682265808805823,
"date": 0.002062812214717269,
"email": 0.004674805328249931,
"person_name": 0.0035742896143347025,
"phone": 0.0036890809424221516,
"price": 0.0009526358917355537,
"unformatted_summary": 0.43473362922668457,
"unformatted_text": 0.2528972923755646
},
"field_id": 7995214,
"location_type": "exact",
"text": "I AC",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 27993,
"end": 27995,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:252",
"confidence": {
"address": 0.029349735006690025,
"category": 0.001124188187532127,
"date": 0.002579169115051627,
"email": 0.007914816960692406,
"person_name": 0.007409064564853907,
"phone": 0.010096516460180283,
"price": 0.001531293266452849,
"unformatted_summary": 0.39329472184181213,
"unformatted_text": 0.4137951731681824
},
"field_id": 7995213,
"location_type": "exact",
"text": "KN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27995,
"end": 28010,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:253",
"confidence": {
"address": 0.021039320155978203,
"category": 0.00120920583140105,
"date": 0.0021429022308439016,
"email": 0.004027952440083027,
"person_name": 0.005527264438569546,
"phone": 0.001791751361452043,
"price": 0.0013516356702893972,
"unformatted_summary": 0.5870029330253601,
"unformatted_text": 0.17022180557250977
},
"field_id": 7995214,
"location_type": "exact",
"text": "OWLEDGE THAT UM",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28020,
"end": 28077,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:254",
"confidence": {
"address": 0.011722678318619728,
"category": 0.0003899934818036854,
"date": 0.0007972560124471784,
"email": 0.0011364034144207835,
"person_name": 0.001449792762286961,
"phone": 0.00034641422098502517,
"price": 0.0014884306583553553,
"unformatted_summary": 0.5584839582443237,
"unformatted_text": 0.08459652960300446
},
"field_id": 7995214,
"location_type": "exact",
"text": "HAS BEEN EXPLAINED TO ME, AND I HAVE BEEN OFFERED THE OPT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28084,
"end": 28090,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:255",
"confidence": {
"address": 0.002420040313154459,
"category": 0.00013033684808760881,
"date": 0.00022552510199602693,
"email": 0.0007543062674812973,
"person_name": 0.00020946966833435,
"phone": 0.00017871019372250885,
"price": 0.0002406644052825868,
"unformatted_summary": 0.3865889608860016,
"unformatted_text": 0.006696847267448902
},
"field_id": 7995214,
"location_type": "exact",
"text": "SELECT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28104,
"end": 28115,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:256",
"confidence": {
"address": 0.00927918404340744,
"category": 0.00027849545585922897,
"date": 0.0004053909797221422,
"email": 0.0006883406895212829,
"person_name": 0.0005902169505134225,
"phone": 0.0005283121718093753,
"price": 0.001648666220717132,
"unformatted_summary": 0.4711827337741852,
"unformatted_text": 0.02029324322938919
},
"field_id": 7995214,
"location_type": "exact",
"text": "EQUAL TO MY",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28132,
"end": 28133,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:257",
"confidence": {
"address": 0.012972402386367321,
"category": 0.00012238329509273171,
"date": 0.0002410892047919333,
"email": 0.00041850152774713933,
"person_name": 0.0003712587058544159,
"phone": 0.0005460955435410142,
"price": 0.001975829480215907,
"unformatted_summary": 0.3727194666862488,
"unformatted_text": 0.020438995212316513
},
"field_id": 7995214,
"location_type": "exact",
"text": ",",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28144,
"end": 28157,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:258",
"confidence": {
"address": 0.00635876739397645,
"category": 0.00011932174675166607,
"date": 0.00026333393179811537,
"email": 0.0005957448156550527,
"person_name": 0.000530117133166641,
"phone": 0.0002825687115546316,
"price": 0.001016603084281087,
"unformatted_summary": 0.5798435807228088,
"unformatted_text": 0.011708390899002552
},
"field_id": 7995214,
"location_type": "exact",
"text": "LOWER THAN MY",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28176,
"end": 28178,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:259",
"confidence": {
"address": 0.02024485543370247,
"category": 0.0009008338674902916,
"date": 0.0016997025813907385,
"email": 0.0017636393895372748,
"person_name": 0.003565368941053748,
"phone": 0.0026015629991889,
"price": 0.004164142534136772,
"unformatted_summary": 0.34138283133506775,
"unformatted_text": 0.06867792457342148
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28182,
"end": 28184,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:260",
"confidence": {
"address": 0.0010921836365014315,
"category": 0.0003191134601365775,
"date": 0.0002784077951218933,
"email": 0.0002357388148084283,
"person_name": 0.0012692853342741728,
"phone": 0.00036910863127559423,
"price": 0.0002517369284760207,
"unformatted_summary": 0.4305807948112488,
"unformatted_text": 0.04494549334049225
},
"field_id": 7995214,
"location_type": "exact",
"text": "RE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28189,
"end": 28191,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:261",
"confidence": {
"address": 0.006021975539624691,
"category": 0.0003814169904217124,
"date": 0.0003236352640669793,
"email": 0.001868882798589766,
"person_name": 0.0009653416927903891,
"phone": 0.00012993703421670943,
"price": 0.00048248007078655064,
"unformatted_summary": 0.3423037528991699,
"unformatted_text": 0.010702619329094887
},
"field_id": 7995214,
"location_type": "exact",
"text": "UM",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28201,
"end": 28210,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:262",
"confidence": {
"address": 0.0021243758965283632,
"category": 0.000500434369314462,
"date": 0.00021269588614813983,
"email": 0.0013522944645956159,
"person_name": 0.00046071718679741025,
"phone": 0.00023544819850940257,
"price": 0.00028397745336405933,
"unformatted_summary": 0.6816564202308655,
"unformatted_text": 0.05995083600282669
},
"field_id": 7995214,
"location_type": "exact",
"text": "ENTIRELY.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28214,
"end": 28222,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:263",
"confidence": {
"address": 0.001397198298946023,
"category": 0.00026435230392962694,
"date": 0.00031871104147285223,
"email": 0.000912268296815455,
"person_name": 0.0005916942609474063,
"phone": 0.0002860120148397982,
"price": 0.00037417784915305674,
"unformatted_summary": 0.4349849820137024,
"unformatted_text": 0.027956213802099228
},
"field_id": 7995214,
"location_type": "exact",
"text": "I SELECT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28233,
"end": 28262,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:264",
"confidence": {
"address": 0.0010520723881199956,
"category": 0.00020144610607530922,
"date": 0.00033880185219459236,
"email": 0.00022290648485068232,
"person_name": 0.0001981812238227576,
"phone": 0.00007230605842778459,
"price": 0.0004232090141158551,
"unformatted_summary": 0.5709683895111084,
"unformatted_text": 0.008079570718109608
},
"field_id": 7995214,
"location_type": "exact",
"text": "INDICATED IN THIS APPLICATION",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28267,
"end": 28278,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:265",
"confidence": {
"address": 0.003490264993160963,
"category": 0.0004071987350471318,
"date": 0.0003634142049122602,
"email": 0.0015921751037240028,
"person_name": 0.0006717013893648982,
"phone": 0.0005944646545685828,
"price": 0.0007500828942283988,
"unformatted_summary": 0.5049533247947693,
"unformatted_text": 0.03260808438062668
},
"field_id": 7995214,
"location_type": "exact",
"text": "2. I REJECT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28291,
"end": 28306,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:266",
"confidence": {
"address": 0.01785161904990673,
"category": 0.0004990139277651906,
"date": 0.004864714108407497,
"email": 0.0024099559523165226,
"person_name": 0.005663084797561169,
"phone": 0.0014095765072852373,
"price": 0.002053570933640003,
"unformatted_summary": 0.6455897688865662,
"unformatted_text": 0.054564468562603
},
"field_id": 7995214,
"location_type": "exact",
"text": "IN ITS ENTIRETY",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28330,
"end": 28356,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:267",
"confidence": {
"address": 0.005550822708755732,
"category": 0.001107203890569508,
"date": 0.001060669543221593,
"email": 0.0022244330029934645,
"person_name": 0.0008652338292449713,
"phone": 0.00035704823676496744,
"price": 0.002384449588134885,
"unformatted_summary": 0.6009365320205688,
"unformatted_text": 0.03703916072845459
},
"field_id": 7995214,
"location_type": "exact",
"text": "APPLICABLE ONLY IN MONTANA",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28358,
"end": 28391,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:268",
"confidence": {
"address": 0.006405626889318228,
"category": 0.0004622394626494497,
"date": 0.0008935370133258402,
"email": 0.0020264224149286747,
"person_name": 0.0014481517719104886,
"phone": 0.0006180654745548964,
"price": 0.000554553815163672,
"unformatted_summary": 0.7114271521568298,
"unformatted_text": 0.11000822484493256
},
"field_id": 7995214,
"location_type": "exact",
"text": "I ACKNOWLEDGE I HAVE BEEN OFFERED",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28405,
"end": 28409,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:269",
"confidence": {
"address": 0.001386788790114224,
"category": 0.0008633497636765242,
"date": 0.0005831726011820138,
"email": 0.0022428554948419333,
"person_name": 0.0006706806598231196,
"phone": 0.00047677691327407956,
"price": 0.0007066072430461645,
"unformatted_summary": 0.3553008437156677,
"unformatted_text": 0.012578194960951805
},
"field_id": 7995214,
"location_type": "exact",
"text": "ORIS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28412,
"end": 28413,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:270",
"confidence": {
"address": 0.0021881922148168087,
"category": 0.0004123050894122571,
"date": 0.0006328866584226489,
"email": 0.0010042762150987983,
"person_name": 0.000297543709166348,
"phone": 0.0003212113515473902,
"price": 0.0013238481478765607,
"unformatted_summary": 0.5318014621734619,
"unformatted_text": 0.006435773801058531
},
"field_id": 7995214,
"location_type": "exact",
"text": "(",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28417,
"end": 28422,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:271",
"confidence": {
"address": 0.005055973306298256,
"category": 0.000991456676274538,
"date": 0.0013501655776053667,
"email": 0.0030666026286780834,
"person_name": 0.0014334330335259438,
"phone": 0.0010997557546943426,
"price": 0.0007026190869510174,
"unformatted_summary": 0.3461662828922272,
"unformatted_text": 0.011909677647054195
},
"field_id": 7995214,
"location_type": "exact",
"text": "COVER",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28426,
"end": 28435,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:272",
"confidence": {
"address": 0.0025504210498183966,
"category": 0.00040416151750832796,
"date": 0.00023185396275948733,
"email": 0.0007123513496480882,
"person_name": 0.0003296947688795626,
"phone": 0.00023173746012616903,
"price": 0.0004517572815530002,
"unformatted_summary": 0.49155890941619873,
"unformatted_text": 0.020942412316799164
},
"field_id": 7995214,
"location_type": "exact",
"text": "AND\nUNDER",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28453,
"end": 28454,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:273",
"confidence": {
"address": 0.0030385020654648542,
"category": 0.0003565740189515054,
"date": 0.0006847810000181198,
"email": 0.001197398523800075,
"person_name": 0.0003601611533667892,
"phone": 0.0004509856807999313,
"price": 0.0010574746411293745,
"unformatted_summary": 0.3643473982810974,
"unformatted_text": 0.006665928289294243
},
"field_id": 7995214,
"location_type": "exact",
"text": "(",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 28467,
"end": 28468,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:274",
"confidence": {
"address": 0.00031533080618828535,
"category": 0.0017450337763875723,
"date": 0.00011797081970144063,
"email": 0.00824695359915495,
"person_name": 0.0003606909594964236,
"phone": 0.0009411165956407785,
"price": 0.0004762801399920136,
"unformatted_summary": 0.48115482926368713,
"unformatted_text": 0.5034464001655579
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28469,
"end": 28589,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:275",
"confidence": {
"address": 0.0024654418230056763,
"category": 0.0006873176898807287,
"date": 0.0006663246895186603,
"email": 0.0010125153930857778,
"person_name": 0.0004391190013848245,
"phone": 0.0002763308002613485,
"price": 0.0009225435205735266,
"unformatted_summary": 0.6279590725898743,
"unformatted_text": 0.021804898977279663
},
"field_id": 7995214,
"location_type": "exact",
"text": "I HAVE SELECTED THE LIMITS INDICATED IN\nTHIS APPLICATION. IF NO LIMITS ARE SHOWN, I HAVE REJECTED THESE COVERAGES.\n(INIT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28595,
"end": 28627,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:276",
"confidence": {
"address": 0.00928205344825983,
"category": 0.0016019911272451282,
"date": 0.0020736216101795435,
"email": 0.002535424195230007,
"person_name": 0.0014718797756358981,
"phone": 0.0004458207404240966,
"price": 0.004991085268557072,
"unformatted_summary": 0.6919476389884949,
"unformatted_text": 0.02931099571287632
},
"field_id": 7995214,
"location_type": "exact",
"text": "APPLICABLE ONLY IN NEW HAMPSHIRE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28629,
"end": 28633,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:277",
"confidence": {
"address": 0.015271330252289772,
"category": 0.0012329809833317995,
"date": 0.0025527323596179485,
"email": 0.005392451770603657,
"person_name": 0.004311791155487299,
"phone": 0.0032373187132179737,
"price": 0.0010731315705925226,
"unformatted_summary": 0.45434367656707764,
"unformatted_text": 0.37130677700042725
},
"field_id": 7995214,
"location_type": "exact",
"text": "I AC",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 28633,
"end": 28635,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:278",
"confidence": {
"address": 0.03294653818011284,
"category": 0.0013680033152922988,
"date": 0.002880110638216138,
"email": 0.005701798014342785,
"person_name": 0.007406536489725113,
"phone": 0.006978956516832113,
"price": 0.0015686152037233114,
"unformatted_summary": 0.37349721789360046,
"unformatted_text": 0.49020421504974365
},
"field_id": 7995213,
"location_type": "exact",
"text": "KN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28635,
"end": 28717,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:279",
"confidence": {
"address": 0.010498627088963985,
"category": 0.0005695445579476655,
"date": 0.0010969057912006974,
"email": 0.001525656902231276,
"person_name": 0.00210719951428473,
"phone": 0.0005821062950417399,
"price": 0.0015022860607132316,
"unformatted_summary": 0.684196949005127,
"unformatted_text": 0.10050462931394577
},
"field_id": 7995214,
"location_type": "exact",
"text": "OWLEDGE THAT UM COVERAGE HAS BEEN EXPLAINED TO ME, AND I HAVE BEEN OFFERED THE OPT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28721,
"end": 28736,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:280",
"confidence": {
"address": 0.0030305394902825356,
"category": 0.0007112474995665252,
"date": 0.0009924215264618397,
"email": 0.00115086673758924,
"person_name": 0.001233142800629139,
"phone": 0.0013842899352312088,
"price": 0.000921676866710186,
"unformatted_summary": 0.5913311243057251,
"unformatted_text": 0.028798777610063553
},
"field_id": 7995214,
"location_type": "exact",
"text": "OF SELECTING UM",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28744,
"end": 28759,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:281",
"confidence": {
"address": 0.004077567253261805,
"category": 0.00026744246133603156,
"date": 0.000421649485360831,
"email": 0.000603171531111002,
"person_name": 0.0006418617558665574,
"phone": 0.0002678770397324115,
"price": 0.0013648133026435971,
"unformatted_summary": 0.6857413053512573,
"unformatted_text": 0.031037699431180954
},
"field_id": 7995214,
"location_type": "exact",
"text": "EQUAL TO MY LIA",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28773,
"end": 28807,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:282",
"confidence": {
"address": 0.005588172003626823,
"category": 0.00038949938607402146,
"date": 0.0004386436485219747,
"email": 0.0010891821002587676,
"person_name": 0.0009641461074352264,
"phone": 0.0004186943988315761,
"price": 0.0011616878909990191,
"unformatted_summary": 0.7094472646713257,
"unformatted_text": 0.05080268532037735
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR TO REJECT UM COVERAGE ENTIRELY.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28811,
"end": 28862,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:283",
"confidence": {
"address": 0.003245564643293619,
"category": 0.0003328353923279792,
"date": 0.0003821155696641654,
"email": 0.0012110734824091196,
"person_name": 0.0005915923393331468,
"phone": 0.00035847051185555756,
"price": 0.0005959584377706051,
"unformatted_summary": 0.5975525379180908,
"unformatted_text": 0.024961624294519424
},
"field_id": 7995214,
"location_type": "exact",
"text": "I SELECT UM LIMITS INDICATED IN THIS APPLICATION.\n2",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28864,
"end": 28901,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:284",
"confidence": {
"address": 0.0058912853710353374,
"category": 0.00047323029139079154,
"date": 0.0017707040533423424,
"email": 0.0014769054250791669,
"person_name": 0.002356733661144972,
"phone": 0.0005380044458433986,
"price": 0.0013620170066133142,
"unformatted_summary": 0.6981005072593689,
"unformatted_text": 0.032716426998376846
},
"field_id": 7995214,
"location_type": "exact",
"text": "I REJECT UM COVERAGE IN ITS ENTIRETY.",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28927,
"end": 28953,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:285",
"confidence": {
"address": 0.0050766728818416595,
"category": 0.0012609915575012565,
"date": 0.0007157686050049961,
"email": 0.0014409770956262946,
"person_name": 0.0006895412225276232,
"phone": 0.00038956149364821613,
"price": 0.0015876649413257837,
"unformatted_summary": 0.5347136855125427,
"unformatted_text": 0.036503665149211884
},
"field_id": 7995214,
"location_type": "exact",
"text": "APPLICABLE ONLY IN VERMONT",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28955,
"end": 28959,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:286",
"confidence": {
"address": 0.020172232761979103,
"category": 0.0015687203267589211,
"date": 0.0028738691471517086,
"email": 0.010842718183994293,
"person_name": 0.00455321092158556,
"phone": 0.005716092884540558,
"price": 0.0011246568756178021,
"unformatted_summary": 0.4556730389595032,
"unformatted_text": 0.31321561336517334
},
"field_id": 7995214,
"location_type": "exact",
"text": "I AC",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 28959,
"end": 28961,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:287",
"confidence": {
"address": 0.04247668758034706,
"category": 0.0018513478571549058,
"date": 0.003873642301186919,
"email": 0.01395974401384592,
"person_name": 0.009534546174108982,
"phone": 0.01266712136566639,
"price": 0.0023969924077391624,
"unformatted_summary": 0.35353735089302063,
"unformatted_text": 0.46066367626190186
},
"field_id": 7995213,
"location_type": "exact",
"text": "KN",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28961,
"end": 28996,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:288",
"confidence": {
"address": 0.013695232570171356,
"category": 0.0011693763080984354,
"date": 0.0018365829018875957,
"email": 0.0052144709043204784,
"person_name": 0.0037330202758312225,
"phone": 0.0016830425010994077,
"price": 0.0015623565996065736,
"unformatted_summary": 0.6216549277305603,
"unformatted_text": 0.11094007641077042
},
"field_id": 7995214,
"location_type": "exact",
"text": "OWLEDGE THAT I HAVE BEEN OFFERED UM",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29006,
"end": 29021,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:289",
"confidence": {
"address": 0.008190995082259178,
"category": 0.0007381475297734141,
"date": 0.0007853588322177529,
"email": 0.0010086691472679377,
"person_name": 0.0008365047397091985,
"phone": 0.0005850719171576202,
"price": 0.0035736325662583113,
"unformatted_summary": 0.6833319067955017,
"unformatted_text": 0.03957568109035492
},
"field_id": 7995214,
"location_type": "exact",
"text": "EQUAL TO MY LIA",
"groupings": []
},
{
"label": "unformatted_text",
"spans": [
{
"start": 29034,
"end": 29035,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:290",
"confidence": {
"address": 0.0004324592009652406,
"category": 0.0039019256364554167,
"date": 0.00014674670819658786,
"email": 0.004844479728490114,
"person_name": 0.0005311553250066936,
"phone": 0.0014918455854058266,
"price": 0.0005712219863198698,
"unformatted_summary": 0.390332967042923,
"unformatted_text": 0.5917094349861145
},
"field_id": 7995213,
"location_type": "exact",
"text": ".",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29036,
"end": 29055,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:291",
"confidence": {
"address": 0.004740947857499123,
"category": 0.0006257365457713604,
"date": 0.0003984799550380558,
"email": 0.0007922406657598913,
"person_name": 0.0005379737704060972,
"phone": 0.00038680285797454417,
"price": 0.0013818469597026706,
"unformatted_summary": 0.7019012570381165,
"unformatted_text": 0.022554432973265648
},
"field_id": 7995214,
"location_type": "exact",
"text": "I HAVE\nSELECTED THE",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29063,
"end": 29183,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:292",
"confidence": {
"address": 0.0030645313672721386,
"category": 0.0006274328916333616,
"date": 0.001095750369131565,
"email": 0.0008026896393857896,
"person_name": 0.00042241887422278523,
"phone": 0.00020512602350208908,
"price": 0.0006929819355718791,
"unformatted_summary": 0.7973127961158752,
"unformatted_text": 0.04058348014950752
},
"field_id": 7995214,
"location_type": "exact",
"text": "INDICATED IN THIS APPLICATION.\nIMPORTANT - THE STATEMENTS (ANSWERS) GIVEN ABOVE ARE TRUE AND ACCURATE. THE APPLICANT HAS",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29188,
"end": 29192,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:293",
"confidence": {
"address": 0.0038707302883267403,
"category": 0.003526340238749981,
"date": 0.0021343897096812725,
"email": 0.0009187964606098831,
"person_name": 0.001109647797420621,
"phone": 0.0008715634467080235,
"price": 0.00020618016424123198,
"unformatted_summary": 0.5074117183685303,
"unformatted_text": 0.30100566148757935
},
"field_id": 7995214,
"location_type": "exact",
"text": "WILL",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29193,
"end": 29300,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:294",
"confidence": {
"address": 0.0017271502874791622,
"category": 0.0001947234122781083,
"date": 0.000644034007564187,
"email": 0.0008256543078459799,
"person_name": 0.0010318878339603543,
"phone": 0.00014183242456056178,
"price": 0.0006308502634055912,
"unformatted_summary": 0.7771329879760742,
"unformatted_text": 0.10101790726184845
},
"field_id": 7995214,
"location_type": "exact",
"text": "ULLY CONCEALED OR MISREPRESENTED ANY MATERIAL FACT OR CIRCUMSTANCE CONCERNING THIS\nAPPLICATION. THIS APPLIC",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29306,
"end": 29334,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:295",
"confidence": {
"address": 0.0021996835712343454,
"category": 0.0004713381640613079,
"date": 0.0002707077073864639,
"email": 0.0008503840072080493,
"person_name": 0.0004993291804566979,
"phone": 0.0002956671523861587,
"price": 0.0015766683500260115,
"unformatted_summary": 0.6864857077598572,
"unformatted_text": 0.02179083600640297
},
"field_id": 7995214,
"location_type": "exact",
"text": "DOES NOT CONSTITUTE A BINDER",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 29499,
"end": 29506,
"page_num": 10
}
],
"span_id": "58853:c:82567:idx:296",
"confidence": {
"address": 0.00014851463492959738,
"category": 0.00011951802298426628,
"date": 0.9056491851806641,
"email": 0.00004768704457092099,
"person_name": 0.000020259110897313803,
"phone": 6.694005151075544e-6,
"price": 0.0001209923648275435,
"unformatted_summary": 0.0004406340594869107,
"unformatted_text": 0.000010347193892812356
},
"field_id": 7995216,
"location_type": "exact",
"text": "2017/11",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 133,
"group_id": "18584:Linked Label Group 1"
}
]
}
],
"18585": [
{
"label": "address",
"spans": [
{
"start": 222,
"end": 239,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:4",
"confidence": {
"address": 0.9759839177131653,
"category": 0.00037687484291382134,
"date": 0.000017563157598488033,
"email": 0.0005671934341080487,
"person_name": 0.00016929097182583064,
"phone": 0.0006274895858950913,
"price": 0.00037939439062029123,
"unformatted_summary": 0.0001986365532502532,
"unformatted_text": 0.000015362904377980158
},
"field_id": 7995220,
"location_type": "exact",
"text": "Melville\nNY 11747"
},
{
"label": "person_name",
"spans": [
{
"start": 248,
"end": 262,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:5",
"confidence": {
"address": 0.0012881667353212833,
"category": 0.0007721777074038982,
"date": 0.00023640615108888596,
"email": 0.0367354080080986,
"person_name": 0.9151628613471985,
"phone": 0.00009312498877989128,
"price": 0.0006245947442948818,
"unformatted_summary": 0.00023094900825526565,
"unformatted_text": 0.0003971043333876878
},
"field_id": 7995219,
"location_type": "exact",
"text": "Pete Carrucciu"
},
{
"label": "phone",
"spans": [
{
"start": 291,
"end": 303,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:6",
"confidence": {
"address": 0.0009654239402152598,
"category": 0.000022247235392569564,
"date": 0.000040371105569647625,
"email": 0.0016271378844976425,
"person_name": 0.00008047560550039634,
"phone": 0.963230311870575,
"price": 0.0001204521395266056,
"unformatted_summary": 0.0003749181341845542,
"unformatted_text": 9.934999980032444e-6
},
"field_id": 7995221,
"location_type": "exact",
"text": "(516) 228-12"
},
{
"label": "phone",
"spans": [
{
"start": 321,
"end": 322,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:7",
"confidence": {
"address": 0.001655567903071642,
"category": 0.00006391282659024,
"date": 0.0000604081287747249,
"email": 0.0026015951298177242,
"person_name": 0.00022486163652502,
"phone": 0.8203206658363342,
"price": 0.00047292615636251867,
"unformatted_summary": 0.00034060474717989564,
"unformatted_text": 0.00003173197546857409
},
"field_id": 7995221,
"location_type": "exact",
"text": "("
},
{
"label": "phone",
"spans": [
{
"start": 325,
"end": 333,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:8",
"confidence": {
"address": 0.0030144189950078726,
"category": 0.000058953177358489484,
"date": 0.00007244006701512262,
"email": 0.00518164224922657,
"person_name": 0.0002822755486704409,
"phone": 0.8942943215370178,
"price": 0.0003651069710031152,
"unformatted_summary": 0.0010116385528817773,
"unformatted_text": 0.000026875433832174167
},
"field_id": 7995221,
"location_type": "exact",
"text": ") 228-12"
},
{
"label": "email",
"spans": [
{
"start": 352,
"end": 377,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:9",
"confidence": {
"address": 0.024396508932113647,
"category": 0.00011251068644924089,
"date": 0.00006671228038612753,
"email": 0.930243730545044,
"person_name": 0.040875282138586044,
"phone": 0.00007413202547468245,
"price": 0.0011078681563958526,
"unformatted_summary": 0.0002615064149722457,
"unformatted_text": 0.00017159432172775269
},
"field_id": 7995218,
"location_type": "exact",
"text": "[email protected]"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2829,
"end": 2833,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:17",
"confidence": {
"address": 0.03778422623872757,
"category": 0.03765225037932396,
"date": 0.01813530921936035,
"email": 0.021206872537732124,
"person_name": 0.005646929610520601,
"phone": 0.009528442285954952,
"price": 0.006862925831228495,
"unformatted_summary": 0.44496309757232666,
"unformatted_text": 0.013542653992772102
},
"field_id": 7995214,
"location_type": "exact",
"text": "of 4"
},
{
"label": "email",
"spans": [
{
"start": 2846,
"end": 2863,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:20",
"confidence": {
"address": 0.021008523181080818,
"category": 0.004123104270547628,
"date": 0.003003638004884124,
"email": 0.5659132599830627,
"person_name": 0.011557383462786674,
"phone": 0.0009860878344625235,
"price": 0.006660609506070614,
"unformatted_summary": 0.11071552336215973,
"unformatted_text": 0.0018799754325300455
},
"field_id": 7995218,
"location_type": "exact",
"text": "ACORD CORPORATION"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2863,
"end": 2864,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:21",
"confidence": {
"address": 0.0016346052289009094,
"category": 0.023077597841620445,
"date": 0.002293654717504978,
"email": 0.05864545702934265,
"person_name": 0.0033146138302981853,
"phone": 0.006803844589740038,
"price": 0.004078413359820843,
"unformatted_summary": 0.4801555871963501,
"unformatted_text": 0.3324519693851471
},
"field_id": 7995214,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2869,
"end": 2885,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:22",
"confidence": {
"address": 0.020956523716449738,
"category": 0.02226029336452484,
"date": 0.05458793416619301,
"email": 0.03860848397016525,
"person_name": 0.012532158754765987,
"phone": 0.009511572308838367,
"price": 0.018850045278668404,
"unformatted_summary": 0.49981021881103516,
"unformatted_text": 0.09470946341753006
},
"field_id": 7995214,
"location_type": "exact",
"text": "rights reserved."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2937,
"end": 2940,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:24",
"confidence": {
"address": 0.0003448147908784449,
"category": 0.0014404269168153405,
"date": 0.003502436215057969,
"email": 0.006206343416124582,
"person_name": 0.0018044409807771444,
"phone": 0.0002267985255457461,
"price": 0.00222343229688704,
"unformatted_summary": 0.35603922605514526,
"unformatted_text": 0.002274978905916214
},
"field_id": 7995214,
"location_type": "exact",
"text": "are"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2952,
"end": 2957,
"page_num": 0
}
],
"span_id": "58853:c:82569:idx:25",
"confidence": {
"address": 0.0024414872750639915,
"category": 0.008813086897134781,
"date": 0.006557130254805088,
"email": 0.046542294323444366,
"person_name": 0.004393525421619415,
"phone": 0.0006879600696265697,
"price": 0.014250153675675392,
"unformatted_summary": 0.6148920059204102,
"unformatted_text": 0.005392925348132849
},
"field_id": 7995214,
"location_type": "exact",
"text": "marks"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6229,
"end": 6269,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:29",
"confidence": {
"address": 0.01766945794224739,
"category": 0.0030591769609600306,
"date": 0.009115488268435001,
"email": 0.002484686439856887,
"person_name": 0.0004656343371607363,
"phone": 0.0018018672708421946,
"price": 0.007063061930239201,
"unformatted_summary": 0.49167370796203613,
"unformatted_text": 0.04661809280514717
},
"field_id": 7995214,
"location_type": "exact",
"text": "DURING THE PRIOR THREE (3) YEARS FOR ANY"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6317,
"end": 6344,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:30",
"confidence": {
"address": 0.00035479984944686294,
"category": 0.0018185718217864633,
"date": 0.002714497270062566,
"email": 0.0013217537198215723,
"person_name": 0.0001614375360077247,
"phone": 0.00032725711935199797,
"price": 0.0015399761032313108,
"unformatted_summary": 0.7004953026771545,
"unformatted_text": 0.010680691339075565
},
"field_id": 7995214,
"location_type": "exact",
"text": "Do not answer this question"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6552,
"end": 6561,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:31",
"confidence": {
"address": 0.0012425424065440893,
"category": 0.0005880644312128425,
"date": 0.0006795701920054853,
"email": 0.0005596390110440552,
"person_name": 0.000151716114487499,
"phone": 0.00007879464828874916,
"price": 0.0008407179266214371,
"unformatted_summary": 0.5992566347122192,
"unformatted_text": 0.015510305762290955
},
"field_id": 7995214,
"location_type": "exact",
"text": "NEGLIGENT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6575,
"end": 6592,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:32",
"confidence": {
"address": 0.015025228261947632,
"category": 0.0007016874733380973,
"date": 0.013517734594643116,
"email": 0.004509704653173685,
"person_name": 0.0010489398846402764,
"phone": 0.0003043511533178389,
"price": 0.0035499234218150377,
"unformatted_summary": 0.5730850100517273,
"unformatted_text": 0.056053560227155685
},
"field_id": 7995214,
"location_type": "exact",
"text": "DURING THE LAST F"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6596,
"end": 6600,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:33",
"confidence": {
"address": 0.006292785983532667,
"category": 0.0008970123017206788,
"date": 0.04736132547259331,
"email": 0.0033990570809692144,
"person_name": 0.0005739378393627703,
"phone": 0.0002272886922582984,
"price": 0.0024426516611129045,
"unformatted_summary": 0.3745661973953247,
"unformatted_text": 0.012976346537470818
},
"field_id": 7995214,
"location_type": "exact",
"text": "YEAR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6619,
"end": 6632,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:34",
"confidence": {
"address": 0.0032732042018324137,
"category": 0.0006758419331163168,
"date": 0.002763810334727168,
"email": 0.001551385852508247,
"person_name": 0.0005372923915274441,
"phone": 0.00017860335356090218,
"price": 0.0012965061469003558,
"unformatted_summary": 0.5374186635017395,
"unformatted_text": 0.13749824464321136
},
"field_id": 7995214,
"location_type": "exact",
"text": "ANY APPLICANT"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 6635,
"end": 6637,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:35",
"confidence": {
"address": 0.001878743409179151,
"category": 0.0005115705425851047,
"date": 0.001767179579474032,
"email": 0.000544397858902812,
"person_name": 0.00019955288735218346,
"phone": 0.000056111541198333725,
"price": 0.00033764285035431385,
"unformatted_summary": 0.11950325965881348,
"unformatted_text": 0.29903164505958557
},
"field_id": 7995213,
"location_type": "exact",
"text": "EN"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 6638,
"end": 6641,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:36",
"confidence": {
"address": 0.0019931686110794544,
"category": 0.001398010877892375,
"date": 0.0027199354954063892,
"email": 0.001839614356867969,
"person_name": 0.0004497725167311728,
"phone": 0.00015923503087833524,
"price": 0.0014384760288521647,
"unformatted_summary": 0.2805742919445038,
"unformatted_text": 0.3310314416885376
},
"field_id": 7995213,
"location_type": "exact",
"text": "IND"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 6644,
"end": 6646,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:37",
"confidence": {
"address": 0.00341353053227067,
"category": 0.0019229569006711245,
"date": 0.0036007885355502367,
"email": 0.0020217711571604013,
"person_name": 0.0008053838391788304,
"phone": 0.0002650934620760381,
"price": 0.0012405316811054945,
"unformatted_summary": 0.19663837552070618,
"unformatted_text": 0.25697407126426697
},
"field_id": 7995213,
"location_type": "exact",
"text": "ED"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6647,
"end": 6657,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:38",
"confidence": {
"address": 0.0034203731920570135,
"category": 0.0009498821455053985,
"date": 0.0024488738272339106,
"email": 0.0009172365535050631,
"person_name": 0.0007486427202820778,
"phone": 0.00019036406592931598,
"price": 0.0013363038888201118,
"unformatted_summary": 0.3973085582256317,
"unformatted_text": 0.19945065677165985
},
"field_id": 7995214,
"location_type": "exact",
"text": "FOR OR CON"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 6658,
"end": 6661,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:39",
"confidence": {
"address": 0.005482543259859085,
"category": 0.0026438322383910418,
"date": 0.004912271164357662,
"email": 0.00185977085493505,
"person_name": 0.0012275840854272246,
"phone": 0.0002486692392267287,
"price": 0.0012299465015530586,
"unformatted_summary": 0.20202282071113586,
"unformatted_text": 0.32120025157928467
},
"field_id": 7995213,
"location_type": "exact",
"text": "ICT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6661,
"end": 6687,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:40",
"confidence": {
"address": 0.002660200232639909,
"category": 0.0008653535624034703,
"date": 0.0021606083028018475,
"email": 0.0009607027168385684,
"person_name": 0.0006496354471892118,
"phone": 0.00015610591799486428,
"price": 0.0011190673103556037,
"unformatted_summary": 0.5387333631515503,
"unformatted_text": 0.1447247862815857
},
"field_id": 7995214,
"location_type": "exact",
"text": "ED OF ANY DEGREE OF THE CR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6691,
"end": 6794,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:41",
"confidence": {
"address": 0.002618952188640833,
"category": 0.0008206198690459132,
"date": 0.002697225660085678,
"email": 0.000878936902154237,
"person_name": 0.000466551398858428,
"phone": 0.0001179807004518807,
"price": 0.0008940016268752515,
"unformatted_summary": 0.6129260063171387,
"unformatted_text": 0.10085523128509521
},
"field_id": 7995214,
"location_type": "exact",
"text": "OF FRAUD,\nBRIBERY, ARSON OR ANY OTHER ARSON-RELATED CRIME IN CONNECTION WITH THIS OR ANY OTHER PROPERTY"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 6802,
"end": 7012,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:42",
"confidence": {
"address": 0.004018584731966257,
"category": 0.0016070008277893066,
"date": 0.0028565600514411926,
"email": 0.009882318787276745,
"person_name": 0.0033586116041988134,
"phone": 0.0006637030746787786,
"price": 0.017009012401103973,
"unformatted_summary": 0.8027605414390564,
"unformatted_text": 0.013071952387690544
},
"field_id": 7995214,
"location_type": "exact",
"text": "RI, this question must be answered by any applicant for property insurance. Failure to disclose the existence of an arson conviction is a misdemeanor punishable\nby a sentence of up to one year of imprisonment)."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8013,
"end": 8020,
"page_num": 2
}
],
"span_id": "58853:c:82569:idx:43",
"confidence": {
"address": 0.0034570437856018543,
"category": 0.0068718865513801575,
"date": 0.0018253092421218753,
"email": 0.005277521908283234,
"person_name": 0.0012272332096472383,
"phone": 0.0006347549497149885,
"price": 0.0009908643551170826,
"unformatted_summary": 0.3663390278816223,
"unformatted_text": 0.008310602977871895
},
"field_id": 7995214,
"location_type": "exact",
"text": "if more"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8303,
"end": 8319,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:45",
"confidence": {
"address": 0.014141499996185303,
"category": 0.003511341754347086,
"date": 0.001279975171200931,
"email": 0.0016389710363000631,
"person_name": 0.0007901130011305213,
"phone": 0.0009141325717791915,
"price": 0.0013160370290279388,
"unformatted_summary": 0.4137415289878845,
"unformatted_text": 0.02313687838613987
},
"field_id": 7995214,
"location_type": "exact",
"text": "REGARDLESS OF FA"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8323,
"end": 8341,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:46",
"confidence": {
"address": 0.010664131492376328,
"category": 0.0015991170657798648,
"date": 0.0011035442585125566,
"email": 0.0014168573543429375,
"person_name": 0.0005834923358634114,
"phone": 0.000811917008832097,
"price": 0.0011267788941040635,
"unformatted_summary": 0.5235773921012878,
"unformatted_text": 0.022609127685427666
},
"field_id": 7995214,
"location_type": "exact",
"text": "AND WHETHER OR NOT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8648,
"end": 8665,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:47",
"confidence": {
"address": 0.000059096404584124684,
"category": 0.0005299901822581887,
"date": 0.0002932281931862235,
"email": 0.0007786994683556259,
"person_name": 0.000048628739023115486,
"phone": 0.00008607587369624525,
"price": 0.00038730373489670455,
"unformatted_summary": 0.6212877035140991,
"unformatted_text": 0.05349947139620781
},
"field_id": 7995214,
"location_type": "exact",
"text": "to the applicant."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8680,
"end": 8693,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:48",
"confidence": {
"address": 0.00009951385436579585,
"category": 0.0009141014888882637,
"date": 0.0016767123015597463,
"email": 0.000927572778891772,
"person_name": 0.0000828748379717581,
"phone": 0.00008980609709396958,
"price": 0.002448492217808962,
"unformatted_summary": 0.6917922496795654,
"unformatted_text": 0.0010387898655608296
},
"field_id": 7995214,
"location_type": "exact",
"text": "in all states"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8695,
"end": 8740,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:49",
"confidence": {
"address": 0.00014951910998206586,
"category": 0.0012652394361793995,
"date": 0.0008948683389462531,
"email": 0.0025624495465308428,
"person_name": 0.0004096396442037076,
"phone": 0.0012931087985634804,
"price": 0.0021387888118624687,
"unformatted_summary": 0.6365440487861633,
"unformatted_text": 0.0032477043569087982
},
"field_id": 7995214,
"location_type": "exact",
"text": "contact your agent or broker for your state's"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8753,
"end": 8819,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:50",
"confidence": {
"address": 0.0003432451921980828,
"category": 0.0002003183908527717,
"date": 0.0005038763047195971,
"email": 0.0009665955440141261,
"person_name": 0.0001113191174226813,
"phone": 0.00016646701260469854,
"price": 0.0005430654855445027,
"unformatted_summary": 0.8047628998756409,
"unformatted_text": 0.00805678591132164
},
"field_id": 7995214,
"location_type": "exact",
"text": ".)\nPERSONAL INFORMATION ABOUT YOU, INCLUDING INFORMATION FROM A CR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8824,
"end": 8930,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:51",
"confidence": {
"address": 0.0017309495015069842,
"category": 0.00018865724268835038,
"date": 0.0019385683117434382,
"email": 0.000853368837852031,
"person_name": 0.00024694931926205754,
"phone": 0.0000917500801733695,
"price": 0.0008407959248870611,
"unformatted_summary": 0.791910707950592,
"unformatted_text": 0.012452519498765469
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR OTHER INVESTIGATIVE REPORT, MAY BE COLLECTED FROM PERSONS\nOTHER THAN YOU IN CONNECTION WITH THIS APPLIC"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8936,
"end": 8943,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:52",
"confidence": {
"address": 0.013402299955487251,
"category": 0.004836682230234146,
"date": 0.006886346731334925,
"email": 0.002118670381605625,
"person_name": 0.0008608144707977772,
"phone": 0.002005484653636813,
"price": 0.0032936115749180317,
"unformatted_summary": 0.3757752776145935,
"unformatted_text": 0.05123371630907059
},
"field_id": 7995214,
"location_type": "exact",
"text": "FOR INS"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8950,
"end": 8967,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:53",
"confidence": {
"address": 0.00710056209936738,
"category": 0.0014704186469316483,
"date": 0.005358255468308926,
"email": 0.0015425878809764981,
"person_name": 0.0006024426547810435,
"phone": 0.0005668859230354428,
"price": 0.0021163090132176876,
"unformatted_summary": 0.5528659224510193,
"unformatted_text": 0.030377235263586044
},
"field_id": 7995214,
"location_type": "exact",
"text": "AND SUBSEQUENT AM"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8976,
"end": 8985,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:54",
"confidence": {
"address": 0.01173831894993782,
"category": 0.0020743412896990776,
"date": 0.00761995417997241,
"email": 0.0015569095266982913,
"person_name": 0.0007953931344673038,
"phone": 0.0010938162449747324,
"price": 0.0032383142970502377,
"unformatted_summary": 0.5021901726722717,
"unformatted_text": 0.03306880593299866
},
"field_id": 7995214,
"location_type": "exact",
"text": "AND RENEW"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 8988,
"end": 8989,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:55",
"confidence": {
"address": 0.0006260138470679522,
"category": 0.008134142495691776,
"date": 0.000924200750887394,
"email": 0.003902803873643279,
"person_name": 0.001202629180625081,
"phone": 0.00558488117530942,
"price": 0.0015994117129594088,
"unformatted_summary": 0.4186047911643982,
"unformatted_text": 0.5497252941131592
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8990,
"end": 9179,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:56",
"confidence": {
"address": 0.004205596167594194,
"category": 0.0005643802578561008,
"date": 0.0033566001802682877,
"email": 0.002295449608936906,
"person_name": 0.0022269359324127436,
"phone": 0.00019315921235829592,
"price": 0.0006724987761117518,
"unformatted_summary": 0.8078500032424927,
"unformatted_text": 0.028961801901459694
},
"field_id": 7995214,
"location_type": "exact",
"text": "SUCH INFORMATION AS WELL AS\nOTHER PERSONAL AND PRIVILEGED INFORMATION COLLECTED BY US OR OUR AGENTS MAY IN CERTAIN CIRCUMSTANCES BE DISCLOSED TO THIRD PARTIES\nWITHOUT YOUR AUTHORIZATION. CR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9184,
"end": 9250,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:57",
"confidence": {
"address": 0.0019593373872339725,
"category": 0.00033060848363675177,
"date": 0.0008621229790151119,
"email": 0.0007342667668126523,
"person_name": 0.0019417668227106333,
"phone": 0.0005231239483691752,
"price": 0.0011416879715397954,
"unformatted_summary": 0.5633684992790222,
"unformatted_text": 0.0342334508895874
},
"field_id": 7995214,
"location_type": "exact",
"text": "SCORING INFORMATION MAY BE USED TO HELP DETERMINE EITHER YOUR ELIG"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9262,
"end": 9265,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:58",
"confidence": {
"address": 0.006996835116297007,
"category": 0.001452274969778955,
"date": 0.0016744427848607302,
"email": 0.004473322071135044,
"person_name": 0.003435838269069791,
"phone": 0.009373986162245274,
"price": 0.003630242543295026,
"unformatted_summary": 0.38241082429885864,
"unformatted_text": 0.13466762006282806
},
"field_id": 7995214,
"location_type": "exact",
"text": "INS"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 9275,
"end": 9278,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:59",
"confidence": {
"address": 0.015793168917298317,
"category": 0.0014292825944721699,
"date": 0.0012289079604670405,
"email": 0.0011795591562986374,
"person_name": 0.005501368548721075,
"phone": 0.007504120469093323,
"price": 0.003875541966408491,
"unformatted_summary": 0.1769500970840454,
"unformatted_text": 0.3855109214782715
},
"field_id": 7995213,
"location_type": "exact",
"text": "THE"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9287,
"end": 9303,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:60",
"confidence": {
"address": 0.010637205094099045,
"category": 0.0005227882647886872,
"date": 0.0015925432089716196,
"email": 0.0028730793856084347,
"person_name": 0.0024849101901054382,
"phone": 0.0011529822368174791,
"price": 0.0044193388894200325,
"unformatted_summary": 0.40613073110580444,
"unformatted_text": 0.2924915850162506
},
"field_id": 7995214,
"location_type": "exact",
"text": "YOU WILL BE CHAR"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 9306,
"end": 9307,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:61",
"confidence": {
"address": 0.0012976641301065683,
"category": 0.014785409905016422,
"date": 0.0014748054090887308,
"email": 0.005715611390769482,
"person_name": 0.0030436082743108273,
"phone": 0.01190072949975729,
"price": 0.00277402950450778,
"unformatted_summary": 0.275873064994812,
"unformatted_text": 0.6741995215415955
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9308,
"end": 9629,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:62",
"confidence": {
"address": 0.003627513302490115,
"category": 0.001535059418529272,
"date": 0.003432881087064743,
"email": 0.0008754383306950331,
"person_name": 0.0017297849990427494,
"phone": 0.0005930886254645884,
"price": 0.0012044524773955345,
"unformatted_summary": 0.7155558466911316,
"unformatted_text": 0.05102125182747841
},
"field_id": 7995214,
"location_type": "exact",
"text": "WE MAY USE A THIRD PARTY IN CONNECTION WITH THE DEVELOPMENT OF YOUR SCORE. YOU MAY HAVE THE RIGHT TO\nREVIEW YOUR PERSONAL INFORMATION IN OUR FILES AND REQUEST CORRECTION OF ANY INACCURACIES. YOU MAY ALSO HAVE THE RIGHT TO REQUEST IN\nWRITING THAT WE CONSIDER EXTRAORDINARY LIFE CIRCUMSTANCES IN CONNECTION WITH THE DEVELOP"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9634,
"end": 9644,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:63",
"confidence": {
"address": 0.0011101296404376626,
"category": 0.0009702363167889416,
"date": 0.0018955148989334702,
"email": 0.0004980179946869612,
"person_name": 0.0005589067004621029,
"phone": 0.0014688464580103755,
"price": 0.0011357899056747556,
"unformatted_summary": 0.47456395626068115,
"unformatted_text": 0.01316265668720007
},
"field_id": 7995214,
"location_type": "exact",
"text": "OF YOUR CR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9649,
"end": 9699,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:64",
"confidence": {
"address": 0.002308618975803256,
"category": 0.002827812684699893,
"date": 0.0019406791543588042,
"email": 0.0019870942924171686,
"person_name": 0.0026771973352879286,
"phone": 0.0017813820159062743,
"price": 0.0015968173975124955,
"unformatted_summary": 0.5578221678733826,
"unformatted_text": 0.0735652819275856
},
"field_id": 7995214,
"location_type": "exact",
"text": "SCORE. THESE RIGHTS MAY\nBE LIMITED IN SOME STATES."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9707,
"end": 9735,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:65",
"confidence": {
"address": 0.0011597370030358434,
"category": 0.00069745525252074,
"date": 0.0018811592599377036,
"email": 0.0010431433329358697,
"person_name": 0.0026389569975435734,
"phone": 0.0004644892178475857,
"price": 0.0008972727810032666,
"unformatted_summary": 0.7387493252754211,
"unformatted_text": 0.02190408855676651
},
"field_id": 7995214,
"location_type": "exact",
"text": "CONTACT YOUR AGENT OR BROKER"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9739,
"end": 9761,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:66",
"confidence": {
"address": 0.012335434556007385,
"category": 0.003802452702075243,
"date": 0.002348475158214569,
"email": 0.0026299594901502132,
"person_name": 0.015797317028045654,
"phone": 0.002343126805499196,
"price": 0.0011412210296839476,
"unformatted_summary": 0.5205122232437134,
"unformatted_text": 0.07328782230615616
},
"field_id": 7995214,
"location_type": "exact",
"text": "LEARN HOW THESE RIGHTS"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9766,
"end": 9779,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:67",
"confidence": {
"address": 0.003075848100706935,
"category": 0.0022201468236744404,
"date": 0.006569894962012768,
"email": 0.0017402939265593886,
"person_name": 0.009656972251832485,
"phone": 0.0010047887917608023,
"price": 0.002703383332118392,
"unformatted_summary": 0.44264641404151917,
"unformatted_text": 0.02890312671661377
},
"field_id": 7995214,
"location_type": "exact",
"text": "APPLY IN YOUR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9786,
"end": 9896,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:68",
"confidence": {
"address": 0.004336331505328417,
"category": 0.0032196403481066227,
"date": 0.0035102292895317078,
"email": 0.0010034601436927915,
"person_name": 0.004431127570569515,
"phone": 0.001102700480259955,
"price": 0.0007702914881519973,
"unformatted_summary": 0.605767011642456,
"unformatted_text": 0.014795559458434582
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR FOR INSTRUCTIONS ON\nHOW TO SUBMIT A REQUEST TO US FOR A MORE DETAILED DESCRIPTION OF YOUR RIGHTS AND OUR PR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 9904,
"end": 9935,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:69",
"confidence": {
"address": 0.00019170502491761,
"category": 0.00010433597344672307,
"date": 0.0003129774413537234,
"email": 0.0003537303418852389,
"person_name": 0.00008046504808589816,
"phone": 0.0000702530232956633,
"price": 0.00014590944920200855,
"unformatted_summary": 0.7844098210334778,
"unformatted_text": 0.013321960344910622
},
"field_id": 7995214,
"location_type": "exact",
"text": "REGARDING PERSONAL INFORMATION."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10002,
"end": 10065,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:70",
"confidence": {
"address": 0.0004238789260853082,
"category": 0.0015892822993919253,
"date": 0.0011767413234338164,
"email": 0.0009438318083994091,
"person_name": 0.00022892023844178766,
"phone": 0.00011363319208612666,
"price": 0.0012381210690364242,
"unformatted_summary": 0.8193903565406799,
"unformatted_text": 0.0013890607515349984
},
"field_id": 7995214,
"location_type": "exact",
"text": "Specific ACORD 38s are available for applicants in these states"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10141,
"end": 10415,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:71",
"confidence": {
"address": 0.0029810622800141573,
"category": 0.005411473102867603,
"date": 0.0013839114690199494,
"email": 0.0057453312911093235,
"person_name": 0.0023549566976726055,
"phone": 0.00035640987334772944,
"price": 0.004056976176798344,
"unformatted_summary": 0.8274911046028137,
"unformatted_text": 0.02933342568576336
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly (or willfully)* presents a false or fraudulent claim for payment of a loss or\nbenefit or knowingly (or willfully)* presents false information in an application for insurance is guilty of a crime and may be subject to fines and confinement in\nprison."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10425,
"end": 10427,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:72",
"confidence": {
"address": 0.011336944065988064,
"category": 0.10278049856424332,
"date": 0.003072133520618081,
"email": 0.013469940982758999,
"person_name": 0.013899643905460835,
"phone": 0.0006961847539059818,
"price": 0.005658628419041634,
"unformatted_summary": 0.2404165118932724,
"unformatted_text": 0.156590074300766
},
"field_id": 7995214,
"location_type": "exact",
"text": "in"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10431,
"end": 10436,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:73",
"confidence": {
"address": 0.005643422715365887,
"category": 0.04185209423303604,
"date": 0.0010463465005159378,
"email": 0.010059384629130363,
"person_name": 0.0049768900498747826,
"phone": 0.0014337478205561638,
"price": 0.0019453098066151142,
"unformatted_summary": 0.4166983962059021,
"unformatted_text": 0.2819676399230957
},
"field_id": 7995214,
"location_type": "exact",
"text": "Only."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10455,
"end": 10636,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:74",
"confidence": {
"address": 0.0003846094768960029,
"category": 0.0008559372508898377,
"date": 0.00040887281647883356,
"email": 0.0019110143184661865,
"person_name": 0.00030147432698868215,
"phone": 0.0001752676907926798,
"price": 0.0004200946423225105,
"unformatted_summary": 0.8766787052154541,
"unformatted_text": 0.026023436337709427
},
"field_id": 7995214,
"location_type": "exact",
"text": "It is unlawful to knowingly provide false, incomplete, or misleading facts or information to an insurance company for the purpose of\ndefrauding or attempting to defraud the company."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10647,
"end": 10679,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:75",
"confidence": {
"address": 0.005947408732026815,
"category": 0.00944049097597599,
"date": 0.0037162855733186007,
"email": 0.018190739676356316,
"person_name": 0.008953646756708622,
"phone": 0.0007239895057864487,
"price": 0.014617559500038624,
"unformatted_summary": 0.5395087003707886,
"unformatted_text": 0.02458789385855198
},
"field_id": 7995214,
"location_type": "exact",
"text": "may include imprisonment, fines,"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 10687,
"end": 11135,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:76",
"confidence": {
"address": 0.0026906568091362715,
"category": 0.0021405776496976614,
"date": 0.0011614459799602628,
"email": 0.004379775375127792,
"person_name": 0.0025835284031927586,
"phone": 0.0007837018929421902,
"price": 0.005081384442746639,
"unformatted_summary": 0.8815770149230957,
"unformatted_text": 0.014136817306280136
},
"field_id": 7995214,
"location_type": "exact",
"text": "of insurance and civil damages. Any insurance\ncompany or agent of an insurance company who knowingly provides false, incomplete, or misleading facts or information to a policyholder or claimant for the\npurpose of defrauding or attempting to defraud the policyholder or claimant with regard to a settlement or award payable from insurance proceeds shall be\nreported to the Colorado Division of Insurance within the Department of Regulatory Agencies."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11150,
"end": 11159,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:77",
"confidence": {
"address": 0.005188538692891598,
"category": 0.012291026301681995,
"date": 0.0005118486005812883,
"email": 0.00530773913487792,
"person_name": 0.0028518380131572485,
"phone": 0.0006463384488597512,
"price": 0.005297110881656408,
"unformatted_summary": 0.5317710041999817,
"unformatted_text": 0.03445487096905708
},
"field_id": 7995214,
"location_type": "exact",
"text": "FL and OK"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11161,
"end": 11395,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:78",
"confidence": {
"address": 0.0005223550251685083,
"category": 0.0020484516862779856,
"date": 0.0004934830940328538,
"email": 0.0017493064515292645,
"person_name": 0.00035108361043967307,
"phone": 0.00008129904745146632,
"price": 0.00041064212564378977,
"unformatted_summary": 0.9284087419509888,
"unformatted_text": 0.021150030195713043
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to injure, defraud, or deceive any insurer files a statement of claim or an application\ncontaining any false, incomplete, or misleading information is guilty of a felony (of the third degree)*."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11408,
"end": 11410,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:79",
"confidence": {
"address": 0.0033711621072143316,
"category": 0.03352082520723343,
"date": 0.0004472096625249833,
"email": 0.0064214239828288555,
"person_name": 0.00430130073800683,
"phone": 0.0014450872549787164,
"price": 0.0060700890608131886,
"unformatted_summary": 0.36294618248939514,
"unformatted_text": 0.0186780858784914
},
"field_id": 7995214,
"location_type": "exact",
"text": "FL"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 11415,
"end": 11416,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:80",
"confidence": {
"address": 0.0003035699774045497,
"category": 0.0059020197950303555,
"date": 0.0003162679204251617,
"email": 0.003135376377031207,
"person_name": 0.0006962636834941804,
"phone": 0.0016397697618231177,
"price": 0.000647075823508203,
"unformatted_summary": 0.45592713356018066,
"unformatted_text": 0.5224399566650391
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11435,
"end": 11782,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:81",
"confidence": {
"address": 0.0005506082670763135,
"category": 0.0004116208292543888,
"date": 0.0007680478738620877,
"email": 0.001607673242688179,
"person_name": 0.0002114201197400689,
"phone": 0.00008023492409847677,
"price": 0.0009100369643419981,
"unformatted_summary": 0.8292127847671509,
"unformatted_text": 0.012706383131444454
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who, knowingly and with intent to defraud, presents, causes to be presented or prepares with knowledge or belief that it will be\npresented to or by an insurer, purported insurer, broker or any agent thereof, any written statement as part of, or in support of, an application for the issuance\nof, or the rating of an insurance policy for"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11792,
"end": 11794,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:82",
"confidence": {
"address": 0.0010935683967545629,
"category": 0.0017272636760026217,
"date": 0.0021505330223590136,
"email": 0.0010622544214129448,
"person_name": 0.00022044296201784164,
"phone": 0.00008456919022137299,
"price": 0.0016708547482267022,
"unformatted_summary": 0.3376845717430115,
"unformatted_text": 0.0037593585439026356
},
"field_id": 7995214,
"location_type": "exact",
"text": "or"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11815,
"end": 11881,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:83",
"confidence": {
"address": 0.0005578715936280787,
"category": 0.0007149680168367922,
"date": 0.0008076178492046893,
"email": 0.0007217240054160357,
"person_name": 0.00010190080502070487,
"phone": 0.00006843638402642682,
"price": 0.0009283701656386256,
"unformatted_summary": 0.6156107187271118,
"unformatted_text": 0.00482608936727047
},
"field_id": 7995214,
"location_type": "exact",
"text": ", or a claim for payment or other benefit pursuant to an insurance"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11889,
"end": 11892,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:84",
"confidence": {
"address": 0.0014326751697808504,
"category": 0.0024498854763805866,
"date": 0.0014768961118534207,
"email": 0.0010734096867963672,
"person_name": 0.00028207447030581534,
"phone": 0.00032365170773118734,
"price": 0.001410230528563261,
"unformatted_summary": 0.4748939871788025,
"unformatted_text": 0.006962660700082779
},
"field_id": 7995214,
"location_type": "exact",
"text": "for"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11904,
"end": 12156,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:85",
"confidence": {
"address": 0.00023409814457409084,
"category": 0.00023413401504512876,
"date": 0.00023572324425913393,
"email": 0.0011426559649407864,
"person_name": 0.00024116711574606597,
"phone": 0.000027974539989372715,
"price": 0.0002877119986806065,
"unformatted_summary": 0.8777117729187012,
"unformatted_text": 0.023748448118567467
},
"field_id": 7995214,
"location_type": "exact",
"text": "or personal insurance which such person knows to contain materially false information concerning any fact material thereto; or conceals, for the\npurpose of misleading, information concerning any fact material thereto commits a fraudulent insurance act."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12175,
"end": 12177,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:86",
"confidence": {
"address": 0.09404093027114868,
"category": 0.04192827269434929,
"date": 0.018275784328579903,
"email": 0.03917936608195305,
"person_name": 0.019819417968392372,
"phone": 0.009351465851068497,
"price": 0.11726105958223343,
"unformatted_summary": 0.21304632723331451,
"unformatted_text": 0.07310962677001953
},
"field_id": 7995214,
"location_type": "exact",
"text": "NY"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12179,
"end": 12188,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:87",
"confidence": {
"address": 0.0331888347864151,
"category": 0.036686088889837265,
"date": 0.014175623655319214,
"email": 0.029742568731307983,
"person_name": 0.02045373059809208,
"phone": 0.007374223787337542,
"price": 0.10223258286714554,
"unformatted_summary": 0.254601389169693,
"unformatted_text": 0.08607631921768188
},
"field_id": 7995214,
"location_type": "exact",
"text": "OH and PA"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12190,
"end": 12677,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:88",
"confidence": {
"address": 0.001127199037000537,
"category": 0.0007345186895690858,
"date": 0.0005255530122667551,
"email": 0.003204899840056896,
"person_name": 0.0005043247947469354,
"phone": 0.00029513658955693245,
"price": 0.020472468808293343,
"unformatted_summary": 0.8201862573623657,
"unformatted_text": 0.02208741381764412
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to defraud any insurance company or other person files an application for\ninsurance or statement of claim containing any materially false information or conceals for the purpose of misleading, information concerning any fact material\nthereto commits a fraudulent insurance act, which is a crime and subjects such person to criminal and civil penalties (not to exceed five thousand dollars and\nthe stated value of the claim for each such violation"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12678,
"end": 12680,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:89",
"confidence": {
"address": 0.0025901056360453367,
"category": 0.009196463972330093,
"date": 0.000849589763674885,
"email": 0.00744695495814085,
"person_name": 0.0031527101527899504,
"phone": 0.00014862205716781318,
"price": 0.0010910946875810623,
"unformatted_summary": 0.34906139969825745,
"unformatted_text": 0.03874692693352699
},
"field_id": 7995214,
"location_type": "exact",
"text": "*."
},
{
"label": "unformatted_text",
"spans": [
{
"start": 12700,
"end": 12701,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:90",
"confidence": {
"address": 0.0010335163678973913,
"category": 0.01788804680109024,
"date": 0.001396809471771121,
"email": 0.00988052599132061,
"person_name": 0.003046306548640132,
"phone": 0.0069024572148919106,
"price": 0.0027763615362346172,
"unformatted_summary": 0.39678964018821716,
"unformatted_text": 0.5524789094924927
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12738,
"end": 12742,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:91",
"confidence": {
"address": 0.0018102654721587896,
"category": 0.00230752257630229,
"date": 0.0015175789594650269,
"email": 0.00960435252636671,
"person_name": 0.003233204362913966,
"phone": 0.0005383131792768836,
"price": 0.0012938877334818244,
"unformatted_summary": 0.39590662717819214,
"unformatted_text": 0.07493557035923004
},
"field_id": 7995214,
"location_type": "exact",
"text": "is a"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12749,
"end": 12880,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:92",
"confidence": {
"address": 0.0003691584279295057,
"category": 0.0008652087417431176,
"date": 0.00047090346924960613,
"email": 0.0019835445564240217,
"person_name": 0.0004898154293186963,
"phone": 0.00014551497588399798,
"price": 0.0005517240497283638,
"unformatted_summary": 0.9029120802879333,
"unformatted_text": 0.036400455981492996
},
"field_id": 7995214,
"location_type": "exact",
"text": "to knowingly provide false, incomplete or misleading information to an insurance company for the purpose\nof defrauding the company."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12898,
"end": 12959,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:93",
"confidence": {
"address": 0.00351453828625381,
"category": 0.008925064466893673,
"date": 0.004534243606030941,
"email": 0.008559750393033028,
"person_name": 0.00798091385513544,
"phone": 0.0009357756935060024,
"price": 0.011854790151119232,
"unformatted_summary": 0.5686510801315308,
"unformatted_text": 0.04104232043027878
},
"field_id": 7995214,
"location_type": "exact",
"text": "include imprisonment, fines and denial of insurance benefits."
},
{
"label": "unformatted_text",
"spans": [
{
"start": 12979,
"end": 12980,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:94",
"confidence": {
"address": 0.0010332794627174735,
"category": 0.017885584384202957,
"date": 0.00139655324164778,
"email": 0.009879769757390022,
"person_name": 0.0030458876863121986,
"phone": 0.006901401095092297,
"price": 0.0027758521027863026,
"unformatted_summary": 0.3967955708503723,
"unformatted_text": 0.5524787306785583
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13003,
"end": 13144,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:95",
"confidence": {
"address": 0.0025041401386260986,
"category": 0.0016851749969646335,
"date": 0.0009547006920911372,
"email": 0.004751492757350206,
"person_name": 0.002012467011809349,
"phone": 0.0006001227302476764,
"price": 0.00392625667154789,
"unformatted_summary": 0.8962993025779724,
"unformatted_text": 0.017867036163806915
},
"field_id": 7995214,
"location_type": "exact",
"text": "person who includes any false or misleading information on an application for an insurance policy is subject to criminal and civil\npenalties."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13156,
"end": 13161,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:96",
"confidence": {
"address": 0.0007769337971694767,
"category": 0.002000353764742613,
"date": 0.0015935919946059585,
"email": 0.004443969577550888,
"person_name": 0.0037710294127464294,
"phone": 0.00010187829320784658,
"price": 0.0015438578557223082,
"unformatted_summary": 0.4300920367240906,
"unformatted_text": 0.03809283301234245
},
"field_id": 7995214,
"location_type": "exact",
"text": "in OR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13163,
"end": 13366,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:97",
"confidence": {
"address": 0.00022557603369932622,
"category": 0.00018936546985059977,
"date": 0.0002532328653614968,
"email": 0.000915887241717428,
"person_name": 0.00023276775027625263,
"phone": 0.00005795437755296007,
"price": 0.0004640895058400929,
"unformatted_summary": 0.936894953250885,
"unformatted_text": 0.01745418831706047
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to defraud or solicit another to defraud the insurer by submitting an application containing a\nfalse statement as to any material fact may be violating state law."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13378,
"end": 13383,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:98",
"confidence": {
"address": 0.00045406806748360395,
"category": 0.0015146508812904358,
"date": 0.0011329427361488342,
"email": 0.002625727327540517,
"person_name": 0.00249696453101933,
"phone": 0.00005737560786656104,
"price": 0.0006026019691489637,
"unformatted_summary": 0.44796186685562134,
"unformatted_text": 0.029536962509155273
},
"field_id": 7995214,
"location_type": "exact",
"text": "in PR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13385,
"end": 13686,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:99",
"confidence": {
"address": 0.001353456755168736,
"category": 0.0007965091499499977,
"date": 0.0005490597104653716,
"email": 0.0023442942183464766,
"person_name": 0.0007346191559918225,
"phone": 0.00010868412937270477,
"price": 0.001181417959742248,
"unformatted_summary": 0.8493958115577698,
"unformatted_text": 0.03965537250041962
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with the intention of defrauding presents false information in an insurance application, or presents, helps,\nor causes the presentation of a fraudulent claim for the payment of a loss or any other benefit, or presents more than one claim for the same damage or loss,\nshall"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13687,
"end": 13692,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:100",
"confidence": {
"address": 0.005375484470278025,
"category": 0.010132773779332638,
"date": 0.0014844503020867705,
"email": 0.01327565498650074,
"person_name": 0.0015680115902796388,
"phone": 0.00041901518125087023,
"price": 0.005728026852011681,
"unformatted_summary": 0.45305898785591125,
"unformatted_text": 0.44564035534858704
},
"field_id": 7995214,
"location_type": "exact",
"text": "incur"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13693,
"end": 13701,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:101",
"confidence": {
"address": 0.009029045701026917,
"category": 0.014928558841347694,
"date": 0.0012820152333006263,
"email": 0.015538418665528297,
"person_name": 0.002950722351670265,
"phone": 0.0009359698742628098,
"price": 0.004671486094594002,
"unformatted_summary": 0.5097609162330627,
"unformatted_text": 0.32907819747924805
},
"field_id": 7995214,
"location_type": "exact",
"text": "a felony"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 13702,
"end": 13706,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:102",
"confidence": {
"address": 0.004901436623185873,
"category": 0.0023673621471971273,
"date": 0.0010038743494078517,
"email": 0.011897875927388668,
"person_name": 0.001352417515590787,
"phone": 0.0009666704572737217,
"price": 0.0029466236010193825,
"unformatted_summary": 0.36137646436691284,
"unformatted_text": 0.4674897789955139
},
"field_id": 7995213,
"location_type": "exact",
"text": "and,"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13707,
"end": 13723,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:103",
"confidence": {
"address": 0.003736192360520363,
"category": 0.0014168494381010532,
"date": 0.0009873997187241912,
"email": 0.013687525875866413,
"person_name": 0.0008142353035509586,
"phone": 0.0004306831688154489,
"price": 0.0012537870788946748,
"unformatted_summary": 0.6677269339561462,
"unformatted_text": 0.2308121919631958
},
"field_id": 7995214,
"location_type": "exact",
"text": "upon conviction,"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 13724,
"end": 13732,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:104",
"confidence": {
"address": 0.006301942281424999,
"category": 0.002286963164806366,
"date": 0.0008295656880363822,
"email": 0.014486510306596756,
"person_name": 0.0015098690055310726,
"phone": 0.0004322303575463593,
"price": 0.0013391056563705206,
"unformatted_summary": 0.2641341984272003,
"unformatted_text": 0.581303596496582
},
"field_id": 7995213,
"location_type": "exact",
"text": "shall be"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13733,
"end": 13811,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:105",
"confidence": {
"address": 0.008188330568373203,
"category": 0.003461986780166626,
"date": 0.0017454585758969188,
"email": 0.013527393341064453,
"person_name": 0.0037623904645442963,
"phone": 0.00170991406776011,
"price": 0.13124315440654755,
"unformatted_summary": 0.6115633249282837,
"unformatted_text": 0.08673499524593353
},
"field_id": 7995214,
"location_type": "exact",
"text": "sanctioned for each violation by a fine of not less than five thousand dollars"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13819,
"end": 13851,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:107",
"confidence": {
"address": 0.003615450579673052,
"category": 0.001942820381373167,
"date": 0.002842785557731986,
"email": 0.005123344250023365,
"person_name": 0.0014910289319232106,
"phone": 0.003940384369343519,
"price": 0.3515586853027344,
"unformatted_summary": 0.5933123230934143,
"unformatted_text": 0.006437923759222031
},
"field_id": 7995214,
"location_type": "exact",
"text": ") and not more than ten\nthousand"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13868,
"end": 13942,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:109",
"confidence": {
"address": 0.010498961433768272,
"category": 0.007118611596524715,
"date": 0.015521634370088577,
"email": 0.019628150388598442,
"person_name": 0.006740993820130825,
"phone": 0.0016209807945415378,
"price": 0.026975659653544426,
"unformatted_summary": 0.7705433368682861,
"unformatted_text": 0.040094271302223206
},
"field_id": 7995214,
"location_type": "exact",
"text": "), or a fixed term of imprisonment for three (3) years, or both penalties."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13950,
"end": 13975,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:110",
"confidence": {
"address": 0.0042434013448655605,
"category": 0.0009501553140580654,
"date": 0.0019703020807355642,
"email": 0.0019667325541377068,
"person_name": 0.0007851606351323426,
"phone": 0.00005423685070127249,
"price": 0.0007006863015703857,
"unformatted_summary": 0.745734453201294,
"unformatted_text": 0.08919232338666916
},
"field_id": 7995214,
"location_type": "exact",
"text": "aggravating circumstances"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13977,
"end": 13979,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:111",
"confidence": {
"address": 0.003350247861817479,
"category": 0.0037431789096444845,
"date": 0.008696514181792736,
"email": 0.004096175078302622,
"person_name": 0.003057052381336689,
"phone": 0.00021774621563963592,
"price": 0.0009371406631544232,
"unformatted_summary": 0.4501897394657135,
"unformatted_text": 0.3964311480522156
},
"field_id": 7995214,
"location_type": "exact",
"text": "be"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 13981,
"end": 14001,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:112",
"confidence": {
"address": 0.010131013579666615,
"category": 0.006587723270058632,
"date": 0.0038978862576186657,
"email": 0.00747021846473217,
"person_name": 0.004684212617576122,
"phone": 0.0006546901422552764,
"price": 0.00265504140406847,
"unformatted_summary": 0.3973689079284668,
"unformatted_text": 0.14226755499839783
},
"field_id": 7995214,
"location_type": "exact",
"text": "present, the penalty"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 14002,
"end": 14006,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:113",
"confidence": {
"address": 0.002812904305756092,
"category": 0.003823955310508609,
"date": 0.0022921154741197824,
"email": 0.024721650406718254,
"person_name": 0.004673071205615997,
"phone": 0.0002634516276884824,
"price": 0.000662216276396066,
"unformatted_summary": 0.19693519175052643,
"unformatted_text": 0.5037056803703308
},
"field_id": 7995213,
"location_type": "exact",
"text": "thus"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 14007,
"end": 14119,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:114",
"confidence": {
"address": 0.009169816970825195,
"category": 0.0022924235090613365,
"date": 0.0048796613700687885,
"email": 0.01219593733549118,
"person_name": 0.00635458342730999,
"phone": 0.0012917884159833193,
"price": 0.011497283354401588,
"unformatted_summary": 0.6516417860984802,
"unformatted_text": 0.03320145979523659
},
"field_id": 7995214,
"location_type": "exact",
"text": "established may be increased to a maximum of five (5) years, if extenuating circumstances are present, it may be"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 14128,
"end": 14132,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:115",
"confidence": {
"address": 0.00928214006125927,
"category": 0.0024310522712767124,
"date": 0.011697471141815186,
"email": 0.013085569255053997,
"person_name": 0.013790782541036606,
"phone": 0.0040802378207445145,
"price": 0.010250695049762726,
"unformatted_summary": 0.359872430562973,
"unformatted_text": 0.012767402455210686
},
"field_id": 7995214,
"location_type": "exact",
"text": "to a"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 14141,
"end": 14432,
"page_num": 3
}
],
"span_id": "58853:c:82569:idx:116",
"confidence": {
"address": 0.00438325060531497,
"category": 0.0006137376767583191,
"date": 0.008222859352827072,
"email": 0.0022764429450035095,
"person_name": 0.003994701895862818,
"phone": 0.000610489456448704,
"price": 0.0024646432138979435,
"unformatted_summary": 0.8303949236869812,
"unformatted_text": 0.051318228244781494
},
"field_id": 7995214,
"location_type": "exact",
"text": "of two (2)\nyears.\nTHE UNDERSIGNED IS AN AUTHORIZED REPRESENTATIVE OF THE APPLICANT AND REPRESENTS THAT REASONABLE INQUIRY HAS BEEN MADE TO OBTAIN THE\nANSWERS TO QUESTIONS ON THIS APPLICATION. HE/SHE REPRESENTS THAT THE ANSWERS ARE TRUE, CORRECT AND COMPLETE TO THE BEST OF HIS/HER\nKNOWLEDGE."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15524,
"end": 15540,
"page_num": 4
}
],
"span_id": "58853:c:82569:idx:121",
"confidence": {
"address": 0.02216091938316822,
"category": 0.010661005973815918,
"date": 0.08195973932743073,
"email": 0.033151037991046906,
"person_name": 0.008156492374837399,
"phone": 0.004407467786222696,
"price": 0.012597821652889252,
"unformatted_summary": 0.5539131760597229,
"unformatted_text": 0.05905116721987724
},
"field_id": 7995214,
"location_type": "exact",
"text": "rights reserved."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15580,
"end": 15585,
"page_num": 4
}
],
"span_id": "58853:c:82569:idx:122",
"confidence": {
"address": 0.001514185918495059,
"category": 0.014029979705810547,
"date": 0.006961895152926445,
"email": 0.03370550274848938,
"person_name": 0.002690774854272604,
"phone": 0.0007898281910456717,
"price": 0.014364443719387054,
"unformatted_summary": 0.49605515599250793,
"unformatted_text": 0.005615591537207365
},
"field_id": 7995214,
"location_type": "exact",
"text": "marks"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15691,
"end": 15693,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:125",
"confidence": {
"address": 0.00012637545296456665,
"category": 0.0003041969030164182,
"date": 0.00018308009020984173,
"email": 0.00042054784717038274,
"person_name": 0.0010641843546181917,
"phone": 0.000388030253816396,
"price": 0.003177940845489502,
"unformatted_summary": 0.8985889554023743,
"unformatted_text": 0.010625583119690418
},
"field_id": 7995214,
"location_type": "exact",
"text": "If"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15706,
"end": 15723,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:126",
"confidence": {
"address": 0.00004719557909993455,
"category": 0.00032108495361171663,
"date": 0.0001011219501378946,
"email": 0.00035224188468419015,
"person_name": 0.0001059621645254083,
"phone": 0.00006594917067559436,
"price": 0.0012659950880333781,
"unformatted_summary": 0.8802924156188965,
"unformatted_text": 0.0013316257391124964
},
"field_id": 7995214,
"location_type": "exact",
"text": "is checked in the"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15731,
"end": 15806,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:127",
"confidence": {
"address": 0.0000882488238858059,
"category": 0.0004559021326713264,
"date": 0.00016947333642747253,
"email": 0.000518602377269417,
"person_name": 0.00016758286801632494,
"phone": 0.00006499511800939217,
"price": 0.0003551689151208848,
"unformatted_summary": 0.8037018179893494,
"unformatted_text": 0.009451186284422874
},
"field_id": 7995214,
"location_type": "exact",
"text": "INFORMATION section below, this is an application for a claims-made policy."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15812,
"end": 15833,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:128",
"confidence": {
"address": 0.000936199794523418,
"category": 0.0013235266087576747,
"date": 0.0015984742203727365,
"email": 0.0022568630520254374,
"person_name": 0.0009959294693544507,
"phone": 0.0006647068075835705,
"price": 0.001162196509540081,
"unformatted_summary": 0.550916314125061,
"unformatted_text": 0.0060211895033717155
},
"field_id": 7995214,
"location_type": "exact",
"text": "all provisions of the"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 15841,
"end": 15851,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:129",
"confidence": {
"address": 0.0007656880770809948,
"category": 0.0018902464071288705,
"date": 0.002593707526102662,
"email": 0.006368936039507389,
"person_name": 0.003943778108805418,
"phone": 0.0012617344036698341,
"price": 0.00043887965148314834,
"unformatted_summary": 0.6116694808006287,
"unformatted_text": 0.09820768982172012
},
"field_id": 7995214,
"location_type": "exact",
"text": "carefully."
},
{
"label": "email",
"spans": [
{
"start": 17577,
"end": 17599,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:132",
"confidence": {
"address": 0.05555017665028572,
"category": 0.02152228355407715,
"date": 0.05094611644744873,
"email": 0.3638938367366791,
"person_name": 0.017227856442332268,
"phone": 0.005682510789483786,
"price": 0.013767200522124767,
"unformatted_summary": 0.18685908615589142,
"unformatted_text": 0.007124962750822306
},
"field_id": 7995218,
"location_type": "exact",
"text": "2017 ACORD CORPORATION"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17599,
"end": 17600,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:133",
"confidence": {
"address": 0.0008446610299870372,
"category": 0.021850677207112312,
"date": 0.0024287907872349024,
"email": 0.02393098920583725,
"person_name": 0.00242020795121789,
"phone": 0.010827438905835152,
"price": 0.0024611731059849262,
"unformatted_summary": 0.5179197192192078,
"unformatted_text": 0.30798307061195374
},
"field_id": 7995214,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 17605,
"end": 17621,
"page_num": 5
}
],
"span_id": "58853:c:82569:idx:134",
"confidence": {
"address": 0.033008165657520294,
"category": 0.02384280599653721,
"date": 0.05772694945335388,
"email": 0.04803577437996864,
"person_name": 0.012387157417833805,
"phone": 0.0076585509814321995,
"price": 0.017360128462314606,
"unformatted_summary": 0.49870404601097107,
"unformatted_text": 0.08189242333173752
},
"field_id": 7995214,
"location_type": "exact",
"text": "rights reserved."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18064,
"end": 18099,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:136",
"confidence": {
"address": 0.0009816648671403527,
"category": 0.001078374101780355,
"date": 0.00010977857891703025,
"email": 0.0011851884191855788,
"person_name": 0.001704899244941771,
"phone": 0.00024632972781546414,
"price": 0.0007524393149651587,
"unformatted_summary": 0.5899752378463745,
"unformatted_text": 0.05467545986175537
},
"field_id": 7995214,
"location_type": "exact",
"text": "In Arkansas, the underlying General"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18102,
"end": 18141,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:137",
"confidence": {
"address": 0.0010653117205947638,
"category": 0.0007492612348869443,
"date": 0.00023326177324634045,
"email": 0.0019440302858129144,
"person_name": 0.0008006197167560458,
"phone": 0.0002630461531225592,
"price": 0.0007034175796434283,
"unformatted_summary": 0.5019847750663757,
"unformatted_text": 0.02341299131512642
},
"field_id": 7995214,
"location_type": "exact",
"text": "ability coverage cannot contain defense"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18148,
"end": 18231,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:138",
"confidence": {
"address": 0.001869560801424086,
"category": 0.0004420084005687386,
"date": 0.0003377684624865651,
"email": 0.0021580990869551897,
"person_name": 0.002183412667363882,
"phone": 0.00017544679576531053,
"price": 0.001660164794884622,
"unformatted_summary": 0.7030646204948425,
"unformatted_text": 0.06461767107248306
},
"field_id": 7995214,
"location_type": "exact",
"text": "within aggregate limits, but must have a separate, equal limit or must be unlimited"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18240,
"end": 18243,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:139",
"confidence": {
"address": 0.0004725309554487467,
"category": 0.00012424145825207233,
"date": 0.0004991836030967534,
"email": 0.0002710786066018045,
"person_name": 0.0003854567476082593,
"phone": 0.0001927639386849478,
"price": 0.000298996310448274,
"unformatted_summary": 0.6626173853874207,
"unformatted_text": 0.006076292134821415
},
"field_id": 7995214,
"location_type": "exact",
"text": "ALL"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18254,
"end": 18273,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:140",
"confidence": {
"address": 0.00600738450884819,
"category": 0.00027246130048297346,
"date": 0.0013542795786634088,
"email": 0.001715386752039194,
"person_name": 0.001231266767717898,
"phone": 0.0004002350615337491,
"price": 0.0007854417781345546,
"unformatted_summary": 0.6175106167793274,
"unformatted_text": 0.05883066728711128
},
"field_id": 7995214,
"location_type": "exact",
"text": "IN UNDERLYING POLIC"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 18276,
"end": 18277,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:141",
"confidence": {
"address": 0.00035145797301083803,
"category": 0.004982724320143461,
"date": 0.0003378597612027079,
"email": 0.0022354277316480875,
"person_name": 0.0013484690571203828,
"phone": 0.00352864689193666,
"price": 0.0007974068867042661,
"unformatted_summary": 0.41588765382766724,
"unformatted_text": 0.555486261844635
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18278,
"end": 18326,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:142",
"confidence": {
"address": 0.000506569747813046,
"category": 0.00008545284072170034,
"date": 0.0004865215450990945,
"email": 0.00037441166932694614,
"person_name": 0.00037216488271951675,
"phone": 0.0001432310527889058,
"price": 0.00038808604585938156,
"unformatted_summary": 0.6035332679748535,
"unformatted_text": 0.008640816435217857
},
"field_id": 7995214,
"location_type": "exact",
"text": "ALSO CHECK IF ANY EXPOSURES ARE PRESENT FOR EACH"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 18335,
"end": 18336,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:143",
"confidence": {
"address": 0.00042822331306524575,
"category": 0.006074570119380951,
"date": 0.0004117932403460145,
"email": 0.0027266826946288347,
"person_name": 0.0016443555941805243,
"phone": 0.004302522633224726,
"price": 0.0009717541397549212,
"unformatted_summary": 0.2936733663082123,
"unformatted_text": 0.6782420873641968
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18345,
"end": 18347,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:144",
"confidence": {
"address": 0.0006623776280321181,
"category": 0.0008093854412436485,
"date": 0.0007022626232355833,
"email": 0.0006430965149775147,
"person_name": 0.0007460960769094527,
"phone": 0.0002239366585854441,
"price": 0.0009673486929386854,
"unformatted_summary": 0.46067705750465393,
"unformatted_text": 0.033927906304597855
},
"field_id": 7995214,
"location_type": "exact",
"text": "AN"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18372,
"end": 18376,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:145",
"confidence": {
"address": 0.0010523238452151418,
"category": 0.00023746548686176538,
"date": 0.0008169789798557758,
"email": 0.0006497936556115746,
"person_name": 0.0007874930161051452,
"phone": 0.00032757921144366264,
"price": 0.00038266589399427176,
"unformatted_summary": 0.4923952519893646,
"unformatted_text": 0.04111267626285553
},
"field_id": 7995214,
"location_type": "exact",
"text": "WHET"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18388,
"end": 18394,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:146",
"confidence": {
"address": 0.0021251654252409935,
"category": 0.0003549268003553152,
"date": 0.0013789045624434948,
"email": 0.0006831474602222443,
"person_name": 0.0014791485155001283,
"phone": 0.00015230460849124938,
"price": 0.0016901539638638496,
"unformatted_summary": 0.42999210953712463,
"unformatted_text": 0.025951184332370758
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR NOT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18744,
"end": 18810,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:147",
"confidence": {
"address": 0.001649994752369821,
"category": 0.0017675994895398617,
"date": 0.0003393778169993311,
"email": 0.0013695016968995333,
"person_name": 0.0007601357065141201,
"phone": 0.00038216778193600476,
"price": 0.0008091710042208433,
"unformatted_summary": 0.4933830499649048,
"unformatted_text": 0.04069375619292259
},
"field_id": 7995214,
"location_type": "exact",
"text": "underlying General Liability coverage cannot contain defense costs"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 18812,
"end": 18816,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:148",
"confidence": {
"address": 0.0011692462721839547,
"category": 0.0011569032212719321,
"date": 0.00013730648788623512,
"email": 0.003710927674546838,
"person_name": 0.0012867844197899103,
"phone": 0.001006201608106494,
"price": 0.0007662724237889051,
"unformatted_summary": 0.15445995330810547,
"unformatted_text": 0.8048787117004395
},
"field_id": 7995213,
"location_type": "exact",
"text": "thin"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18817,
"end": 18861,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:149",
"confidence": {
"address": 0.0033431435003876686,
"category": 0.00348901329562068,
"date": 0.0005912402993999422,
"email": 0.0031397927086800337,
"person_name": 0.002080864505842328,
"phone": 0.0007095830515027046,
"price": 0.0024750875309109688,
"unformatted_summary": 0.5505982637405396,
"unformatted_text": 0.08358284085988998
},
"field_id": 7995214,
"location_type": "exact",
"text": "the limits; subject to Commissioner's Orders"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 18935,
"end": 18942,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:150",
"confidence": {
"address": 0.011885006912052631,
"category": 0.0019377110293135047,
"date": 0.0010795884300023317,
"email": 0.0038185962475836277,
"person_name": 0.0020789962727576494,
"phone": 0.0014202186139300466,
"price": 0.0015308662550523877,
"unformatted_summary": 0.3984782099723816,
"unformatted_text": 0.14169982075691223
},
"field_id": 7995214,
"location_type": "exact",
"text": "UNDERLY"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19263,
"end": 19264,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:151",
"confidence": {
"address": 0.0010349119547754526,
"category": 0.00012491465895436704,
"date": 0.0006896104314364493,
"email": 0.00035155273508280516,
"person_name": 0.0001586120342835784,
"phone": 0.00013066994142718613,
"price": 0.0003268043219577521,
"unformatted_summary": 0.38550081849098206,
"unformatted_text": 0.05799271538853645
},
"field_id": 7995214,
"location_type": "exact",
"text": "\""
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 19314,
"end": 19316,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:152",
"confidence": {
"address": 0.004249157849699259,
"category": 0.0005135343526490033,
"date": 0.0017173390369862318,
"email": 0.00045574441901408136,
"person_name": 0.0003643949457909912,
"phone": 0.00017041360842995346,
"price": 0.000788032659329474,
"unformatted_summary": 0.35385990142822266,
"unformatted_text": 0.06954317539930344
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 19396,
"end": 19397,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:153",
"confidence": {
"address": 0.0005853198235854506,
"category": 0.016038803383708,
"date": 0.0010296535911038518,
"email": 0.0044588809832930565,
"person_name": 0.0025337026454508305,
"phone": 0.007788531947880983,
"price": 0.0016453316202387214,
"unformatted_summary": 0.2819530963897705,
"unformatted_text": 0.6518301367759705
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_text",
"spans": [
{
"start": 19472,
"end": 19473,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:154",
"confidence": {
"address": 0.0005841598031111062,
"category": 0.01602705754339695,
"date": 0.0010286640608683228,
"email": 0.004458369687199593,
"person_name": 0.002532021142542362,
"phone": 0.007784906309098005,
"price": 0.0016428226372227073,
"unformatted_summary": 0.2820090055465698,
"unformatted_text": 0.651790201663971
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20112,
"end": 20150,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:155",
"confidence": {
"address": 0.0011327057145535946,
"category": 0.000839265005197376,
"date": 0.0003923561016563326,
"email": 0.0035167201422154903,
"person_name": 0.0010057102190330625,
"phone": 0.0002392782480455935,
"price": 0.00041879137279465795,
"unformatted_summary": 0.702735424041748,
"unformatted_text": 0.04548031464219093
},
"field_id": 7995214,
"location_type": "exact",
"text": "be attached if more space is required."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20210,
"end": 20216,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:156",
"confidence": {
"address": 0.008609783835709095,
"category": 0.0013112995075061917,
"date": 0.007433877792209387,
"email": 0.0019364962354302406,
"person_name": 0.0002812980383168906,
"phone": 0.00042080471757799387,
"price": 0.032367996871471405,
"unformatted_summary": 0.3886747360229492,
"unformatted_text": 0.012430734932422638
},
"field_id": 7995214,
"location_type": "exact",
"text": "EXCEED"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20220,
"end": 20234,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:157",
"confidence": {
"address": 0.012800367549061775,
"category": 0.0033872767817229033,
"date": 0.01887008361518383,
"email": 0.0011664805933833122,
"person_name": 0.0005500397528521717,
"phone": 0.0006682048551738262,
"price": 0.06859128922224045,
"unformatted_summary": 0.4169628322124481,
"unformatted_text": 0.007981359027326107
},
"field_id": 7995214,
"location_type": "exact",
"text": "$10,000 OR OCC"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20243,
"end": 20253,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:158",
"confidence": {
"address": 0.016685711219906807,
"category": 0.0015443448210135102,
"date": 0.01175696775317192,
"email": 0.0013668284518644214,
"person_name": 0.0006030666991136968,
"phone": 0.00026893115136772394,
"price": 0.005106406286358833,
"unformatted_summary": 0.37476062774658203,
"unformatted_text": 0.011527731083333492
},
"field_id": 7995214,
"location_type": "exact",
"text": "THAT MAY G"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20257,
"end": 20258,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:159",
"confidence": {
"address": 0.011283316649496555,
"category": 0.001281814300455153,
"date": 0.006064272951334715,
"email": 0.001263791462406516,
"person_name": 0.0004580921959131956,
"phone": 0.00016443812637589872,
"price": 0.0040121558122336864,
"unformatted_summary": 0.3644622266292572,
"unformatted_text": 0.015516883693635464
},
"field_id": 7995214,
"location_type": "exact",
"text": "R"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20273,
"end": 20303,
"page_num": 6
}
],
"span_id": "58853:c:82569:idx:160",
"confidence": {
"address": 0.030549250543117523,
"category": 0.0018996932776644826,
"date": 0.07390506565570831,
"email": 0.004596673883497715,
"person_name": 0.0008777033071964979,
"phone": 0.0011914098868146539,
"price": 0.00843401625752449,
"unformatted_summary": 0.5707191228866577,
"unformatted_text": 0.01374736800789833
},
"field_id": 7995214,
"location_type": "exact",
"text": "DURING THE PAST FIVE (5) YEARS"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 20672,
"end": 20673,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:162",
"confidence": {
"address": 0.00020724542264360934,
"category": 0.012436820194125175,
"date": 0.0004670917696785182,
"email": 0.004078760743141174,
"person_name": 0.0010617377702146769,
"phone": 0.0016679028049111366,
"price": 0.0005397399654611945,
"unformatted_summary": 0.43643730878829956,
"unformatted_text": 0.42399176955223083
},
"field_id": 7995214,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21245,
"end": 21260,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:164",
"confidence": {
"address": 0.007092851679772139,
"category": 0.025857681408524513,
"date": 0.004308443516492844,
"email": 0.014971098862588406,
"person_name": 0.006198069546371698,
"phone": 0.0012847610050812364,
"price": 0.0027365281712263823,
"unformatted_summary": 0.47900915145874023,
"unformatted_text": 0.007794957607984543
},
"field_id": 7995214,
"location_type": "exact",
"text": "101, Additional"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21277,
"end": 21320,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:165",
"confidence": {
"address": 0.00219819787889719,
"category": 0.003909262362867594,
"date": 0.0013231696793809533,
"email": 0.005608284845948219,
"person_name": 0.0020019267685711384,
"phone": 0.0004455957969184965,
"price": 0.0010799183510243893,
"unformatted_summary": 0.6966254711151123,
"unformatted_text": 0.0029320844914764166
},
"field_id": 7995214,
"location_type": "exact",
"text": ", may be attached if more space is required"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 21324,
"end": 21325,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:166",
"confidence": {
"address": 0.0002501177368685603,
"category": 0.009412561543285847,
"date": 0.0006217737100087106,
"email": 0.003963696304708719,
"person_name": 0.0007975940243341029,
"phone": 0.0033113877288997173,
"price": 0.0010180857498198748,
"unformatted_summary": 0.3678121864795685,
"unformatted_text": 0.5920467972755432
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21355,
"end": 21367,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:167",
"confidence": {
"address": 0.009512822143733501,
"category": 0.02181815728545189,
"date": 0.006465950980782509,
"email": 0.02319561131298542,
"person_name": 0.010386139154434204,
"phone": 0.002018583472818136,
"price": 0.003552494803443551,
"unformatted_summary": 0.3833402097225189,
"unformatted_text": 0.015075739473104477
},
"field_id": 7995214,
"location_type": "exact",
"text": ", Additional"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21384,
"end": 21427,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:168",
"confidence": {
"address": 0.001819989993236959,
"category": 0.00397084467113018,
"date": 0.00128656264860183,
"email": 0.0063084932044148445,
"person_name": 0.0024785357527434826,
"phone": 0.0006355465156957507,
"price": 0.000999687472358346,
"unformatted_summary": 0.5927085876464844,
"unformatted_text": 0.005121390800923109
},
"field_id": 7995214,
"location_type": "exact",
"text": ", may be attached if more space is required"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 21431,
"end": 21432,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:169",
"confidence": {
"address": 0.00024713765014894307,
"category": 0.009363636374473572,
"date": 0.0006162808858789504,
"email": 0.003947427961975336,
"person_name": 0.0007923351950012147,
"phone": 0.0032869454007595778,
"price": 0.0010079835774376988,
"unformatted_summary": 0.36854514479637146,
"unformatted_text": 0.591418981552124
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21448,
"end": 21482,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:170",
"confidence": {
"address": 0.0011558738769963384,
"category": 0.00015425191668327898,
"date": 0.003887962317094207,
"email": 0.001154797850176692,
"person_name": 0.0003116785956081003,
"phone": 0.0003393560473341495,
"price": 0.0029409481212496758,
"unformatted_summary": 0.4979316294193268,
"unformatted_text": 0.02106397971510887
},
"field_id": 7995214,
"location_type": "exact",
"text": "OWN, RENT, OR OTHERWISE USE CRANES"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 21486,
"end": 21487,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:171",
"confidence": {
"address": 0.00012706269626505673,
"category": 0.004894188139587641,
"date": 0.0002992360678035766,
"email": 0.001864866353571415,
"person_name": 0.0003325509314890951,
"phone": 0.0011543232249096036,
"price": 0.0004810466489288956,
"unformatted_summary": 0.30461856722831726,
"unformatted_text": 0.6580683588981628
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21495,
"end": 21505,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:172",
"confidence": {
"address": 0.0005784757668152452,
"category": 0.00015287524729501456,
"date": 0.001978862565010786,
"email": 0.001057016896083951,
"person_name": 0.00020182777370791882,
"phone": 0.00020150409545749426,
"price": 0.0005504948203451931,
"unformatted_summary": 0.3556388318538666,
"unformatted_text": 0.04453011602163315
},
"field_id": 7995214,
"location_type": "exact",
"text": "ONTRACTORS"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21537,
"end": 21541,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:173",
"confidence": {
"address": 0.002706449246034026,
"category": 0.0002836722997017205,
"date": 0.0029685371555387974,
"email": 0.0017337024910375476,
"person_name": 0.0005863487021997571,
"phone": 0.00040019815787672997,
"price": 0.0015070541994646192,
"unformatted_summary": 0.38822436332702637,
"unformatted_text": 0.09203965961933136
},
"field_id": 7995214,
"location_type": "exact",
"text": "THAN"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21594,
"end": 21595,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:174",
"confidence": {
"address": 0.005156327039003372,
"category": 0.004176740534603596,
"date": 0.011061822064220905,
"email": 0.0024117855355143547,
"person_name": 0.00038312849937938154,
"phone": 0.0005996451363898814,
"price": 0.005113703198730946,
"unformatted_summary": 0.35655611753463745,
"unformatted_text": 0.023350795730948448
},
"field_id": 7995214,
"location_type": "exact",
"text": "-"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21603,
"end": 21609,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:175",
"confidence": {
"address": 0.00905742309987545,
"category": 0.0016931710997596383,
"date": 0.02858728915452957,
"email": 0.006743617355823517,
"person_name": 0.000919093145057559,
"phone": 0.0005300869233906269,
"price": 0.011458349414169788,
"unformatted_summary": 0.4785134196281433,
"unformatted_text": 0.03500784561038017
},
"field_id": 7995214,
"location_type": "exact",
"text": "IN ANY"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 21751,
"end": 21752,
"page_num": 7
}
],
"span_id": "58853:c:82569:idx:176",
"confidence": {
"address": 0.00010379103332525119,
"category": 0.0056708636693656445,
"date": 0.0004299164575058967,
"email": 0.004954146686941385,
"person_name": 0.0005110606434755027,
"phone": 0.0018245599931105971,
"price": 0.00048738589975982904,
"unformatted_summary": 0.3040543496608734,
"unformatted_text": 0.3274444341659546
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21973,
"end": 21988,
"page_num": 8
}
],
"span_id": "58853:c:82569:idx:179",
"confidence": {
"address": 0.00020176028192508966,
"category": 0.00037325979792512953,
"date": 0.0005246662185527384,
"email": 0.0003740406536962837,
"person_name": 0.00018699611246120185,
"phone": 0.0001941818482009694,
"price": 0.0007150014862418175,
"unformatted_summary": 0.46308866143226624,
"unformatted_text": 0.0019062029896304011
},
"field_id": 7995214,
"location_type": "exact",
"text": "\"YES\" RESPONSES"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 21998,
"end": 22015,
"page_num": 8
}
],
"span_id": "58853:c:82569:idx:180",
"confidence": {
"address": 0.00013522841618396342,
"category": 0.00035771785769611597,
"date": 0.00038884859532117844,
"email": 0.00025250486214645207,
"person_name": 0.00009894844697555527,
"phone": 0.00009366075391881168,
"price": 0.0003969805547967553,
"unformatted_summary": 0.4032101631164551,
"unformatted_text": 0.0015412403736263514
},
"field_id": 7995214,
"location_type": "exact",
"text": "OTHER INFORMATION"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22073,
"end": 22077,
"page_num": 8
}
],
"span_id": "58853:c:82569:idx:181",
"confidence": {
"address": 0.004153385292738676,
"category": 0.0005704917712137103,
"date": 0.004455139394849539,
"email": 0.0010204128921031952,
"person_name": 0.000537717598490417,
"phone": 0.0011155303800478578,
"price": 0.0010762277524918318,
"unformatted_summary": 0.3602867126464844,
"unformatted_text": 0.02029728889465332
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR P"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22081,
"end": 22144,
"page_num": 8
}
],
"span_id": "58853:c:82569:idx:182",
"confidence": {
"address": 0.0017312249401584268,
"category": 0.00020601267169695348,
"date": 0.0020278713200241327,
"email": 0.0003984543145634234,
"person_name": 0.00017643117462284863,
"phone": 0.000596711877733469,
"price": 0.0004426470841281116,
"unformatted_summary": 0.5035954713821411,
"unformatted_text": 0.011948790401220322
},
"field_id": 7995214,
"location_type": "exact",
"text": "PRODUCTS, OR THEIR COMPONENTS, CONTAIN HAZARDOUS MATERIALS THAT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22149,
"end": 22181,
"page_num": 8
}
],
"span_id": "58853:c:82569:idx:183",
"confidence": {
"address": 0.0012427184265106916,
"category": 0.00011124145385110751,
"date": 0.0006739454693160951,
"email": 0.0001977468782570213,
"person_name": 0.00018961219757329673,
"phone": 0.00021210615523159504,
"price": 0.0002023465494858101,
"unformatted_summary": 0.5722287893295288,
"unformatted_text": 0.00894262082874775
},
"field_id": 7995214,
"location_type": "exact",
"text": "REQUIRE SPECIAL\nDISPOSAL METHODS"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22885,
"end": 22892,
"page_num": 8
}
],
"span_id": "58853:c:82569:idx:184",
"confidence": {
"address": 0.00030716846231371164,
"category": 0.0008314979495480657,
"date": 0.00041072204476222396,
"email": 0.0012391754426062107,
"person_name": 0.00023036936181597412,
"phone": 0.00007025356171652675,
"price": 0.0003903488686773926,
"unformatted_summary": 0.5690988302230835,
"unformatted_text": 0.000500369060318917
},
"field_id": 7995214,
"location_type": "exact",
"text": "if more"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 22899,
"end": 22901,
"page_num": 8
}
],
"span_id": "58853:c:82569:idx:185",
"confidence": {
"address": 0.0002857389044947922,
"category": 0.00036709761479869485,
"date": 0.001199999125674367,
"email": 0.0011094113579019904,
"person_name": 0.00015092345711309463,
"phone": 0.0000398737502109725,
"price": 0.00029619800625368953,
"unformatted_summary": 0.5512247085571289,
"unformatted_text": 0.0009694191976450384
},
"field_id": 7995214,
"location_type": "exact",
"text": "is"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23439,
"end": 23448,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:188",
"confidence": {
"address": 0.0013407440856099129,
"category": 0.003645855002105236,
"date": 0.0013978170463815331,
"email": 0.005278849508613348,
"person_name": 0.0005700330948457122,
"phone": 0.0003323756391182542,
"price": 0.0020219297148287296,
"unformatted_summary": 0.3253771662712097,
"unformatted_text": 0.059745848178863525
},
"field_id": 7995214,
"location_type": "exact",
"text": "knowingly"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23450,
"end": 23462,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:189",
"confidence": {
"address": 0.002234681509435177,
"category": 0.0038156346417963505,
"date": 0.001769389258697629,
"email": 0.00510283000767231,
"person_name": 0.0005895193316973746,
"phone": 0.00029755849391222,
"price": 0.002413680776953697,
"unformatted_summary": 0.482194185256958,
"unformatted_text": 0.06758026778697968
},
"field_id": 7995214,
"location_type": "exact",
"text": "or willfully"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23465,
"end": 23501,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:190",
"confidence": {
"address": 0.0013736910186707973,
"category": 0.004639052785933018,
"date": 0.000989806605502963,
"email": 0.003079093061387539,
"person_name": 0.0004741154261864722,
"phone": 0.00018130586249753833,
"price": 0.001600135350599885,
"unformatted_summary": 0.38315749168395996,
"unformatted_text": 0.031759798526763916
},
"field_id": 7995214,
"location_type": "exact",
"text": "presents a false or fraudulent\nclaim"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23506,
"end": 23698,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:191",
"confidence": {
"address": 0.00252347718924284,
"category": 0.0020983575377613306,
"date": 0.0010824021883308887,
"email": 0.004920253064483404,
"person_name": 0.0013318138662725687,
"phone": 0.00023960540420375764,
"price": 0.0028638318181037903,
"unformatted_summary": 0.8299136161804199,
"unformatted_text": 0.036741577088832855
},
"field_id": 7995214,
"location_type": "exact",
"text": "payment of a loss or benefit or knowingly (or willfully)* presents false information in an application for insurance is\nguilty of a crime and may be subject to fines and confinement in prison."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23708,
"end": 23710,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:192",
"confidence": {
"address": 0.008320274762809277,
"category": 0.06980100274085999,
"date": 0.001311566331423819,
"email": 0.011237915605306625,
"person_name": 0.0153140714392066,
"phone": 0.0004594346391968429,
"price": 0.003210395807400346,
"unformatted_summary": 0.2352418601512909,
"unformatted_text": 0.2183813601732254
},
"field_id": 7995214,
"location_type": "exact",
"text": "in"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23714,
"end": 23719,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:193",
"confidence": {
"address": 0.005649992264807224,
"category": 0.02140122279524803,
"date": 0.0006201191572472453,
"email": 0.00908100325614214,
"person_name": 0.004974919371306896,
"phone": 0.0017567324684932828,
"price": 0.0013083479134365916,
"unformatted_summary": 0.4024980068206787,
"unformatted_text": 0.2905727028846741
},
"field_id": 7995214,
"location_type": "exact",
"text": "Only."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23738,
"end": 23919,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:194",
"confidence": {
"address": 0.00040655076736584306,
"category": 0.0008030917961150408,
"date": 0.000440161325968802,
"email": 0.0017019120277836919,
"person_name": 0.00025903910864144564,
"phone": 0.00016810094530228525,
"price": 0.0003947882796637714,
"unformatted_summary": 0.9137182235717773,
"unformatted_text": 0.017062868922948837
},
"field_id": 7995214,
"location_type": "exact",
"text": "It is unlawful to knowingly provide false, incomplete, or misleading facts or information to an insurance\ncompany for the purpose of defrauding or attempting to defraud the company."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23930,
"end": 23961,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:195",
"confidence": {
"address": 0.006996548268944025,
"category": 0.0108524514362216,
"date": 0.003841494442895055,
"email": 0.012801950797438622,
"person_name": 0.004959469195455313,
"phone": 0.0006275197374634445,
"price": 0.011857306584715843,
"unformatted_summary": 0.44908174872398376,
"unformatted_text": 0.02333310805261135
},
"field_id": 7995214,
"location_type": "exact",
"text": "may include imprisonment, fines"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 23963,
"end": 24418,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:196",
"confidence": {
"address": 0.0028952572029083967,
"category": 0.002849683864042163,
"date": 0.000820529239717871,
"email": 0.0031452232506126165,
"person_name": 0.0018090112134814262,
"phone": 0.000760834023822099,
"price": 0.004820057190954685,
"unformatted_summary": 0.8543738126754761,
"unformatted_text": 0.01263015903532505
},
"field_id": 7995214,
"location_type": "exact",
"text": "denial of insurance and civil damages. Any insurance company or agent of an insurance company who knowingly provides\nfalse, incomplete, or misleading facts or information to a policyholder or claimant for the purpose of defrauding or attempting to\ndefraud the policyholder or claimant with regard to a settlement or award payable from insurance proceeds shall be reported to\nthe Colorado Division of Insurance within the Department of Regulatory Agencies."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 24430,
"end": 24442,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:197",
"confidence": {
"address": 0.00514265475794673,
"category": 0.025232084095478058,
"date": 0.0014348747208714485,
"email": 0.0031321323476731777,
"person_name": 0.0028019598685204983,
"phone": 0.0020970774348825216,
"price": 0.007741086650639772,
"unformatted_summary": 0.42800620198249817,
"unformatted_text": 0.04314562305808067
},
"field_id": 7995214,
"location_type": "exact",
"text": "in FL and OK"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 24444,
"end": 24678,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:198",
"confidence": {
"address": 0.0006428618798963726,
"category": 0.002365524647757411,
"date": 0.00057496118824929,
"email": 0.001745209563523531,
"person_name": 0.0004201536357868463,
"phone": 0.00011874699703184888,
"price": 0.000546849041711539,
"unformatted_summary": 0.9436120390892029,
"unformatted_text": 0.015790047124028206
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to injure, defraud, or deceive any insurer files a\nstatement of claim or an application containing any false, incomplete, or misleading information is guilty of a felony (of the\nthird degree)*."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 24691,
"end": 24699,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:199",
"confidence": {
"address": 0.001506315660662949,
"category": 0.016036175191402435,
"date": 0.0002519586414564401,
"email": 0.003043743781745434,
"person_name": 0.002678890014067292,
"phone": 0.0010281313443556428,
"price": 0.0018738028593361378,
"unformatted_summary": 0.5457853674888611,
"unformatted_text": 0.11710578948259354
},
"field_id": 7995214,
"location_type": "exact",
"text": "FL Only."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 24718,
"end": 25530,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:200",
"confidence": {
"address": 0.0004688019398599863,
"category": 0.00046388013288378716,
"date": 0.0006854315870441496,
"email": 0.0012056767009198666,
"person_name": 0.00020236114505678415,
"phone": 0.00007326180639211088,
"price": 0.0008327383548021317,
"unformatted_summary": 0.8763953447341919,
"unformatted_text": 0.015779202803969383
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who, knowingly and with intent to defraud, presents, causes to be presented or prepares with\nknowledge or belief that it will be presented to or by an insurer, purported insurer, broker or any agent thereof, any written,\nelectronic, electronic impulse, facsimile, magnetic, oral, or telephonic communication or statement as part of, or in support of,\nan application for the issuance of, or the rating of an insurance policy for personal or commercial insurance, or a claim for\npayment or other benefit pursuant to an insurance policy for commercial or personal insurance which such person knows to\ncontain materially false information concerning any fact material thereto; or conceals, for the purpose of misleading, information\nconcerning any fact material thereto commits a fraudulent insurance act."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 25542,
"end": 25547,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:201",
"confidence": {
"address": 0.008907816372811794,
"category": 0.016861900687217712,
"date": 0.005403489805757999,
"email": 0.011026415973901749,
"person_name": 0.003950471058487892,
"phone": 0.0013834185665473342,
"price": 0.027490360662341118,
"unformatted_summary": 0.34619805216789246,
"unformatted_text": 0.06284485757350922
},
"field_id": 7995214,
"location_type": "exact",
"text": "in KY"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 25549,
"end": 25551,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:202",
"confidence": {
"address": 0.047547291964292526,
"category": 0.03339453786611557,
"date": 0.015463692136108875,
"email": 0.022104796022176743,
"person_name": 0.005807706154882908,
"phone": 0.003639697562903166,
"price": 0.10135425627231598,
"unformatted_summary": 0.2417600154876709,
"unformatted_text": 0.05570049583911896
},
"field_id": 7995214,
"location_type": "exact",
"text": "NY"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 25556,
"end": 25562,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:203",
"confidence": {
"address": 0.012609274126589298,
"category": 0.02071933075785637,
"date": 0.011011917144060135,
"email": 0.010449687018990517,
"person_name": 0.006728423293679953,
"phone": 0.0031093633733689785,
"price": 0.0458216592669487,
"unformatted_summary": 0.336540162563324,
"unformatted_text": 0.08082132786512375
},
"field_id": 7995214,
"location_type": "exact",
"text": "and PA"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 25564,
"end": 26052,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:204",
"confidence": {
"address": 0.0016599043738096952,
"category": 0.001059542060829699,
"date": 0.0005494799115695059,
"email": 0.00371568463742733,
"person_name": 0.0006461389129981399,
"phone": 0.0002610943920444697,
"price": 0.013279254548251629,
"unformatted_summary": 0.841469407081604,
"unformatted_text": 0.021905850619077682
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to defraud any insurance company or other\nperson files an application for insurance or statement of claim containing any materially false information or conceals for the\npurpose of misleading, information concerning any fact material thereto commits a fraudulent insurance act, which is a crime\nand subjects such person to criminal and civil penalties* (not to exceed five thousand dollars and the stated value of the claim\nfor each such violation"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26068,
"end": 26070,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:205",
"confidence": {
"address": 0.030179625377058983,
"category": 0.03714423626661301,
"date": 0.000995768466964364,
"email": 0.0702190026640892,
"person_name": 0.038228701800107956,
"phone": 0.0016728484770283103,
"price": 0.06590025871992111,
"unformatted_summary": 0.23996683955192566,
"unformatted_text": 0.0996096283197403
},
"field_id": 7995214,
"location_type": "exact",
"text": "NY"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 26075,
"end": 26076,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:206",
"confidence": {
"address": 0.0005318530020304024,
"category": 0.009314929135143757,
"date": 0.0005079624825157225,
"email": 0.004624894820153713,
"person_name": 0.0012724660336971283,
"phone": 0.0026507521979510784,
"price": 0.0010708046611398458,
"unformatted_summary": 0.4169681966304779,
"unformatted_text": 0.5575757622718811
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26102,
"end": 26105,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:207",
"confidence": {
"address": 0.006916980724781752,
"category": 0.02550126053392887,
"date": 0.010635699145495892,
"email": 0.004291706718504429,
"person_name": 0.005375126842409372,
"phone": 0.0011736454907804728,
"price": 0.014324131421744823,
"unformatted_summary": 0.3177258372306824,
"unformatted_text": 0.04995953291654587
},
"field_id": 7995214,
"location_type": "exact",
"text": "and"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26116,
"end": 26254,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:208",
"confidence": {
"address": 0.0005960009293630719,
"category": 0.0012498659780249,
"date": 0.0005519892438314855,
"email": 0.002408159663900733,
"person_name": 0.0003592074499465525,
"phone": 0.0001696470135357231,
"price": 0.0005906976293772459,
"unformatted_summary": 0.8697353601455688,
"unformatted_text": 0.013996684923768044
},
"field_id": 7995214,
"location_type": "exact",
"text": "a crime to knowingly provide false, incomplete or misleading information to an\ninsurance company for the purpose of defrauding the company"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26281,
"end": 26334,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:209",
"confidence": {
"address": 0.003951335325837135,
"category": 0.00620881887152791,
"date": 0.005908012390136719,
"email": 0.006005838513374329,
"person_name": 0.009264729917049408,
"phone": 0.0016346253687515855,
"price": 0.01440531574189663,
"unformatted_summary": 0.4885442554950714,
"unformatted_text": 0.03239212557673454
},
"field_id": 7995214,
"location_type": "exact",
"text": "imprisonment, fines and denial of\ninsurance benefits."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26347,
"end": 26355,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:210",
"confidence": {
"address": 0.0055815186351537704,
"category": 0.015684960409998894,
"date": 0.0010564078111201525,
"email": 0.019977809861302376,
"person_name": 0.012011772952973843,
"phone": 0.0017926259897649288,
"price": 0.0025697650853544474,
"unformatted_summary": 0.5004103779792786,
"unformatted_text": 0.18243445456027985
},
"field_id": 7995214,
"location_type": "exact",
"text": "ME Only."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26374,
"end": 26519,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:211",
"confidence": {
"address": 0.001252853311598301,
"category": 0.0011994619853794575,
"date": 0.00047548950533382595,
"email": 0.0032604786101728678,
"person_name": 0.0006515115965157747,
"phone": 0.0001613805943634361,
"price": 0.0017412202432751656,
"unformatted_summary": 0.8701956272125244,
"unformatted_text": 0.020572848618030548
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who includes any false or misleading information on an application for an insurance policy is\nsubject to criminal and civil penalties."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26538,
"end": 26741,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:212",
"confidence": {
"address": 0.00028191335150040686,
"category": 0.0005157840787433088,
"date": 0.0005097112152725458,
"email": 0.001595500623807311,
"person_name": 0.00040370412170886993,
"phone": 0.0001022520664264448,
"price": 0.0006051953532733023,
"unformatted_summary": 0.8815819621086121,
"unformatted_text": 0.02076098509132862
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with intent to defraud or solicit another to defraud the insurer by submitting\nan application containing a false statement as to any material fact may be violating state law."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 26760,
"end": 27159,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:213",
"confidence": {
"address": 0.0021087578497827053,
"category": 0.0014454071642830968,
"date": 0.0007597980438731611,
"email": 0.004635075572878122,
"person_name": 0.0011409013532102108,
"phone": 0.000467216334072873,
"price": 0.011627951636910439,
"unformatted_summary": 0.833737850189209,
"unformatted_text": 0.058063965290784836
},
"field_id": 7995214,
"location_type": "exact",
"text": "Any person who knowingly and with the intention of defrauding presents false information in an insurance\napplication, or presents, helps, or causes the presentation of a fraudulent claim for the payment of a loss or any other benefit,\nor presents more than one claim for the same damage or loss, shall incur a felony and, upon conviction, shall be sanctioned for\neach violation by a fine of not less"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27243,
"end": 27297,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:215",
"confidence": {
"address": 0.009870273061096668,
"category": 0.008392305113375187,
"date": 0.04272642359137535,
"email": 0.017505813390016556,
"person_name": 0.006551291327923536,
"phone": 0.000982198747806251,
"price": 0.026072172448039055,
"unformatted_summary": 0.6070089340209961,
"unformatted_text": 0.008631759323179722
},
"field_id": 7995214,
"location_type": "exact",
"text": "), or a\nfixed term of imprisonment for three (3) years"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27302,
"end": 27317,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:216",
"confidence": {
"address": 0.0036265330854803324,
"category": 0.00865886639803648,
"date": 0.0015434911474585533,
"email": 0.008602768182754517,
"person_name": 0.0022572230082005262,
"phone": 0.002947875065729022,
"price": 0.0036753921303898096,
"unformatted_summary": 0.438949316740036,
"unformatted_text": 0.19743894040584564
},
"field_id": 7995214,
"location_type": "exact",
"text": "both penalties."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27325,
"end": 27350,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:217",
"confidence": {
"address": 0.0028180081862956285,
"category": 0.0003721608081832528,
"date": 0.0009055798873305321,
"email": 0.0014679183950647712,
"person_name": 0.0019342914456501603,
"phone": 0.00007001989433774725,
"price": 0.0008959744591265917,
"unformatted_summary": 0.6254671216011047,
"unformatted_text": 0.13347403705120087
},
"field_id": 7995214,
"location_type": "exact",
"text": "aggravating circumstances"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 27352,
"end": 27354,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:218",
"confidence": {
"address": 0.0016052083810791373,
"category": 0.0010696827666833997,
"date": 0.005105234682559967,
"email": 0.003007791470736265,
"person_name": 0.0033317357301712036,
"phone": 0.00021800673857796937,
"price": 0.0005708283861167729,
"unformatted_summary": 0.4027162194252014,
"unformatted_text": 0.45264098048210144
},
"field_id": 7995213,
"location_type": "exact",
"text": "be"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27356,
"end": 27363,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:219",
"confidence": {
"address": 0.0007438730099238455,
"category": 0.0020705454517155886,
"date": 0.00502054812386632,
"email": 0.0023437661584466696,
"person_name": 0.010815493762493134,
"phone": 0.00010103237582370639,
"price": 0.001851442619226873,
"unformatted_summary": 0.49350669980049133,
"unformatted_text": 0.31241655349731445
},
"field_id": 7995214,
"location_type": "exact",
"text": "present"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 27377,
"end": 27381,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:220",
"confidence": {
"address": 0.0016952756559476256,
"category": 0.0007151463651098311,
"date": 0.0012979498133063316,
"email": 0.016700826585292816,
"person_name": 0.00409040367230773,
"phone": 0.00018835191440302879,
"price": 0.0004447090032044798,
"unformatted_summary": 0.18609465658664703,
"unformatted_text": 0.4539463520050049
},
"field_id": 7995213,
"location_type": "exact",
"text": "thus"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27382,
"end": 27393,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:221",
"confidence": {
"address": 0.006774622015655041,
"category": 0.0009510436793789268,
"date": 0.0006446089828386903,
"email": 0.005611133761703968,
"person_name": 0.008431024849414825,
"phone": 0.00033505723695270717,
"price": 0.001927209203131497,
"unformatted_summary": 0.5586577653884888,
"unformatted_text": 0.09909616410732269
},
"field_id": 7995214,
"location_type": "exact",
"text": "established"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27416,
"end": 27441,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:222",
"confidence": {
"address": 0.00942507479339838,
"category": 0.0014164288295432925,
"date": 0.02126576565206051,
"email": 0.019536351785063744,
"person_name": 0.021945614367723465,
"phone": 0.0016352406237274408,
"price": 0.016963286325335503,
"unformatted_summary": 0.4827834963798523,
"unformatted_text": 0.007678606081753969
},
"field_id": 7995214,
"location_type": "exact",
"text": "maximum of five (5) years"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 27441,
"end": 27442,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:223",
"confidence": {
"address": 0.002190129365772009,
"category": 0.00035387606476433575,
"date": 0.000306277594063431,
"email": 0.0019385124323889613,
"person_name": 0.0038355360738933086,
"phone": 0.00027280408539809287,
"price": 0.003729061922058463,
"unformatted_summary": 0.2358594685792923,
"unformatted_text": 0.2871306538581848
},
"field_id": 7995213,
"location_type": "exact",
"text": ","
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27443,
"end": 27483,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:224",
"confidence": {
"address": 0.003325714962556958,
"category": 0.00023077231890056282,
"date": 0.0008487658924423158,
"email": 0.004478993359953165,
"person_name": 0.004794587381184101,
"phone": 0.00010125637345481664,
"price": 0.0007957950001582503,
"unformatted_summary": 0.5593079924583435,
"unformatted_text": 0.12451857328414917
},
"field_id": 7995214,
"location_type": "exact",
"text": "if extenuating circumstances are present"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27519,
"end": 27533,
"page_num": 9
}
],
"span_id": "58853:c:82569:idx:225",
"confidence": {
"address": 0.01397660467773676,
"category": 0.009116459637880325,
"date": 0.04597510024905205,
"email": 0.020159227773547173,
"person_name": 0.03726645186543465,
"phone": 0.0032020974904298782,
"price": 0.0155535489320755,
"unformatted_summary": 0.45141902565956116,
"unformatted_text": 0.07980134338140488
},
"field_id": 7995214,
"location_type": "exact",
"text": "two (2) years."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27612,
"end": 27659,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:228",
"confidence": {
"address": 0.005029373802244663,
"category": 0.003126569092273712,
"date": 0.007411877159029245,
"email": 0.002827621065080166,
"person_name": 0.0002962907310575247,
"phone": 0.0004068034759256989,
"price": 0.0014753802679479122,
"unformatted_summary": 0.5633386969566345,
"unformatted_text": 0.00686178682371974
},
"field_id": 7995214,
"location_type": "exact",
"text": "COMPANY TO WHICH I AM APPLYING OFFERS UNINSURED"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27959,
"end": 27961,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:229",
"confidence": {
"address": 0.007481359876692295,
"category": 0.0064927805215120316,
"date": 0.006605551578104496,
"email": 0.01645689643919468,
"person_name": 0.011920205317437649,
"phone": 0.0022480948828160763,
"price": 0.01492211502045393,
"unformatted_summary": 0.3233890235424042,
"unformatted_text": 0.15271037817001343
},
"field_id": 7995214,
"location_type": "exact",
"text": "AP"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27970,
"end": 27974,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:230",
"confidence": {
"address": 0.017409658059477806,
"category": 0.0037342060822993517,
"date": 0.0008892214391380548,
"email": 0.006836575455963612,
"person_name": 0.004016225691884756,
"phone": 0.0005071698105894029,
"price": 0.004648004192858934,
"unformatted_summary": 0.3017372190952301,
"unformatted_text": 0.06646212935447693
},
"field_id": 7995214,
"location_type": "exact",
"text": "ONLY"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27979,
"end": 27986,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:231",
"confidence": {
"address": 0.024107448756694794,
"category": 0.0060540251433849335,
"date": 0.0007462682551704347,
"email": 0.013522148132324219,
"person_name": 0.005809754133224487,
"phone": 0.0005091591156087816,
"price": 0.0029534546192735434,
"unformatted_summary": 0.45007792115211487,
"unformatted_text": 0.047826364636421204
},
"field_id": 7995214,
"location_type": "exact",
"text": "OUISIAN"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 27991,
"end": 28007,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:232",
"confidence": {
"address": 0.001517114113084972,
"category": 0.00021885515889152884,
"date": 0.0009916999842971563,
"email": 0.0013160653179511428,
"person_name": 0.0022870898246765137,
"phone": 0.00048597020213492215,
"price": 0.0003103292838204652,
"unformatted_summary": 0.5798490643501282,
"unformatted_text": 0.11437118798494339
},
"field_id": 7995214,
"location_type": "exact",
"text": "ACKNOWLEDGE THAT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28029,
"end": 28033,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:233",
"confidence": {
"address": 0.0007817613077349961,
"category": 0.0005971738137304783,
"date": 0.000671104178763926,
"email": 0.0004983243998140097,
"person_name": 0.0010527551639825106,
"phone": 0.00016687320021446794,
"price": 0.0011129053309559822,
"unformatted_summary": 0.37170809507369995,
"unformatted_text": 0.05094502121210098
},
"field_id": 7995214,
"location_type": "exact",
"text": "EXPL"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28039,
"end": 28056,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:234",
"confidence": {
"address": 0.0041887834668159485,
"category": 0.0009958260925486684,
"date": 0.0015498892171308398,
"email": 0.0016195927746593952,
"person_name": 0.0023439268115907907,
"phone": 0.0007765808259136975,
"price": 0.0009729749872349203,
"unformatted_summary": 0.39667513966560364,
"unformatted_text": 0.11751895397901535
},
"field_id": 7995214,
"location_type": "exact",
"text": "TO ME, AND I HAVE"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28070,
"end": 28077,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:235",
"confidence": {
"address": 0.01427418738603592,
"category": 0.0008528684265911579,
"date": 0.0016261790879070759,
"email": 0.0010681161656975746,
"person_name": 0.004063744097948074,
"phone": 0.0005677566514350474,
"price": 0.003270399756729603,
"unformatted_summary": 0.36600884795188904,
"unformatted_text": 0.20688027143478394
},
"field_id": 7995214,
"location_type": "exact",
"text": "THE OPT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28201,
"end": 28207,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:236",
"confidence": {
"address": 0.002584136091172695,
"category": 0.00021235249005258083,
"date": 0.0010000343900173903,
"email": 0.00029079068917781115,
"person_name": 0.0012407295871526003,
"phone": 0.00024699923233129084,
"price": 0.00031321897404268384,
"unformatted_summary": 0.3299066424369812,
"unformatted_text": 0.05806649848818779
},
"field_id": 7995214,
"location_type": "exact",
"text": "ENTIRE"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 28209,
"end": 28210,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:237",
"confidence": {
"address": 0.00040899100713431835,
"category": 0.004026488866657019,
"date": 0.0001120476154028438,
"email": 0.003146184841170907,
"person_name": 0.0009152568527497351,
"phone": 0.0014648542273789644,
"price": 0.0005197181599214673,
"unformatted_summary": 0.2743881940841675,
"unformatted_text": 0.6869757771492004
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28246,
"end": 28250,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:238",
"confidence": {
"address": 0.004863508976995945,
"category": 0.0009294642368331552,
"date": 0.0023418127093464136,
"email": 0.0004500909708440304,
"person_name": 0.001632455736398697,
"phone": 0.00008775615424383432,
"price": 0.0007144741248339415,
"unformatted_summary": 0.34068793058395386,
"unformatted_text": 0.03345382213592529
},
"field_id": 7995214,
"location_type": "exact",
"text": "THIS"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28267,
"end": 28268,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:239",
"confidence": {
"address": 0.009107391349971294,
"category": 0.003393305465579033,
"date": 0.0011362724471837282,
"email": 0.0039052385836839676,
"person_name": 0.003245928790420294,
"phone": 0.00279619125649333,
"price": 0.001353042316623032,
"unformatted_summary": 0.6961210370063782,
"unformatted_text": 0.08598500490188599
},
"field_id": 7995214,
"location_type": "exact",
"text": "2"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28272,
"end": 28274,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:240",
"confidence": {
"address": 0.002340200124308467,
"category": 0.00026856421027332544,
"date": 0.00054068403551355,
"email": 0.0008671739487908781,
"person_name": 0.003770224517211318,
"phone": 0.00048774119932204485,
"price": 0.00033813470508903265,
"unformatted_summary": 0.29938042163848877,
"unformatted_text": 0.1165781244635582
},
"field_id": 7995214,
"location_type": "exact",
"text": "RE"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28291,
"end": 28307,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:241",
"confidence": {
"address": 0.005357729271054268,
"category": 0.0004356956051196903,
"date": 0.002904679859057069,
"email": 0.0020182235166430473,
"person_name": 0.0077822343446314335,
"phone": 0.001091587240807712,
"price": 0.0006937115103937685,
"unformatted_summary": 0.46247968077659607,
"unformatted_text": 0.15147191286087036
},
"field_id": 7995214,
"location_type": "exact",
"text": "IN ITS ENTIRETY."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28330,
"end": 28353,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:242",
"confidence": {
"address": 0.007429434452205896,
"category": 0.0025095560122281313,
"date": 0.0018099561566486955,
"email": 0.003882259363308549,
"person_name": 0.00315401260741055,
"phone": 0.0005462004337459803,
"price": 0.0030517419800162315,
"unformatted_summary": 0.4165692627429962,
"unformatted_text": 0.08822638541460037
},
"field_id": 7995214,
"location_type": "exact",
"text": "APPLICABLE ONLY IN MONT"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 28358,
"end": 28359,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:243",
"confidence": {
"address": 0.0031490926630795,
"category": 0.000976958661340177,
"date": 0.0027750812005251646,
"email": 0.005002683959901333,
"person_name": 0.002509679878130555,
"phone": 0.0014181084698066115,
"price": 0.00046324633876793087,
"unformatted_summary": 0.2575457990169525,
"unformatted_text": 0.2992967963218689
},
"field_id": 7995213,
"location_type": "exact",
"text": "I"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28360,
"end": 28383,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:244",
"confidence": {
"address": 0.001469793962314725,
"category": 0.00015253305900841951,
"date": 0.000668365741148591,
"email": 0.0010064193047583103,
"person_name": 0.0013150941813364625,
"phone": 0.00016756942204665393,
"price": 0.0002454759960528463,
"unformatted_summary": 0.5792620182037354,
"unformatted_text": 0.0999617800116539
},
"field_id": 7995214,
"location_type": "exact",
"text": "ACKNOWLEDGE I HAVE BEEN"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 28467,
"end": 28468,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:245",
"confidence": {
"address": 0.0003189709677826613,
"category": 0.0012329324381425977,
"date": 0.00010914549056906253,
"email": 0.0020179282873868942,
"person_name": 0.00036018615355715156,
"phone": 0.0013907147804275155,
"price": 0.00022406822245102376,
"unformatted_summary": 0.42035141587257385,
"unformatted_text": 0.5714746117591858
},
"field_id": 7995213,
"location_type": "exact",
"text": "."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28469,
"end": 28488,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:246",
"confidence": {
"address": 0.0018368733581155539,
"category": 0.0003087255172431469,
"date": 0.0004884359077550471,
"email": 0.0007874829461798072,
"person_name": 0.0010681513231247663,
"phone": 0.00026863571838475764,
"price": 0.00028813761309720576,
"unformatted_summary": 0.49636101722717285,
"unformatted_text": 0.0368480421602726
},
"field_id": 7995214,
"location_type": "exact",
"text": "I HAVE SELECTED THE"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28496,
"end": 28525,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:247",
"confidence": {
"address": 0.002102210186421871,
"category": 0.00037085136864334345,
"date": 0.001985809300094843,
"email": 0.0011221054010093212,
"person_name": 0.0018492959206923842,
"phone": 0.000169393140822649,
"price": 0.0005200413288548589,
"unformatted_summary": 0.5884026288986206,
"unformatted_text": 0.04815615713596344
},
"field_id": 7995214,
"location_type": "exact",
"text": "INDICATED IN\nTHIS APPLICATION"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28527,
"end": 28532,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:248",
"confidence": {
"address": 0.005088996607810259,
"category": 0.0004819727037101984,
"date": 0.0006068502552807331,
"email": 0.001439083949662745,
"person_name": 0.0035605994053184986,
"phone": 0.0010702507570385933,
"price": 0.00036088027991354465,
"unformatted_summary": 0.5451673865318298,
"unformatted_text": 0.04120907932519913
},
"field_id": 7995214,
"location_type": "exact",
"text": "IF NO"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28540,
"end": 28583,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:249",
"confidence": {
"address": 0.0013971582520753145,
"category": 0.000504021649248898,
"date": 0.0005355721805244684,
"email": 0.0007064100354909897,
"person_name": 0.0023714290000498295,
"phone": 0.00043973050196655095,
"price": 0.00025623320834711194,
"unformatted_summary": 0.5725557804107666,
"unformatted_text": 0.06490496546030045
},
"field_id": 7995214,
"location_type": "exact",
"text": "ARE SHOWN, I HAVE REJECTED THESE COVERAGES."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28585,
"end": 28589,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:250",
"confidence": {
"address": 0.00526303518563509,
"category": 0.0038122162222862244,
"date": 0.008272988721728325,
"email": 0.004751135595142841,
"person_name": 0.002500442322343588,
"phone": 0.0008445848943665624,
"price": 0.005705500952899456,
"unformatted_summary": 0.3291356563568115,
"unformatted_text": 0.06309882551431656
},
"field_id": 7995214,
"location_type": "exact",
"text": "INIT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28595,
"end": 28627,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:251",
"confidence": {
"address": 0.0065178778022527695,
"category": 0.002691117115318775,
"date": 0.003929159604012966,
"email": 0.006109714973717928,
"person_name": 0.004681956488639116,
"phone": 0.0007219098042696714,
"price": 0.0053250291384756565,
"unformatted_summary": 0.5995776653289795,
"unformatted_text": 0.06470333784818649
},
"field_id": 7995214,
"location_type": "exact",
"text": "APPLICABLE ONLY IN NEW HAMPSHIRE"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 28629,
"end": 28630,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:252",
"confidence": {
"address": 0.002240321831777692,
"category": 0.0007616032380610704,
"date": 0.0023978729732334614,
"email": 0.0031869581434875727,
"person_name": 0.0021907968912273645,
"phone": 0.0012119053862988949,
"price": 0.000662631937302649,
"unformatted_summary": 0.2188677340745926,
"unformatted_text": 0.30399760603904724
},
"field_id": 7995213,
"location_type": "exact",
"text": "I"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28631,
"end": 28701,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:253",
"confidence": {
"address": 0.0013098769122734666,
"category": 0.0002860326203517616,
"date": 0.0008171412046067417,
"email": 0.0007573103648610413,
"person_name": 0.001231991802342236,
"phone": 0.0003030144434887916,
"price": 0.0004066932888235897,
"unformatted_summary": 0.5512661337852478,
"unformatted_text": 0.08565572649240494
},
"field_id": 7995214,
"location_type": "exact",
"text": "ACKNOWLEDGE THAT UM COVERAGE HAS BEEN EXPLAINED TO ME, AND I HAVE BEEN"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28710,
"end": 28717,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:254",
"confidence": {
"address": 0.020331768319010735,
"category": 0.0013538231141865253,
"date": 0.0024404870346188545,
"email": 0.001249234308488667,
"person_name": 0.004079990088939667,
"phone": 0.0006654696771875024,
"price": 0.003996140323579311,
"unformatted_summary": 0.4177848696708679,
"unformatted_text": 0.16677850484848022
},
"field_id": 7995214,
"location_type": "exact",
"text": "THE OPT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28744,
"end": 28755,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:255",
"confidence": {
"address": 0.006507650017738342,
"category": 0.0008134773233905435,
"date": 0.0014579757116734982,
"email": 0.0009349132888019085,
"person_name": 0.0018557417206466198,
"phone": 0.0008298777393065393,
"price": 0.002625890541821718,
"unformatted_summary": 0.3649354577064514,
"unformatted_text": 0.09123867750167847
},
"field_id": 7995214,
"location_type": "exact",
"text": "EQUAL TO MY"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28773,
"end": 28775,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:256",
"confidence": {
"address": 0.009986029006540775,
"category": 0.0015142586780712008,
"date": 0.0032224582973867655,
"email": 0.002023034729063511,
"person_name": 0.004060165025293827,
"phone": 0.0010841090697795153,
"price": 0.005010269582271576,
"unformatted_summary": 0.3455587923526764,
"unformatted_text": 0.117258720099926
},
"field_id": 7995214,
"location_type": "exact",
"text": "OR"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28779,
"end": 28807,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:257",
"confidence": {
"address": 0.002067142864689231,
"category": 0.0004503213567659259,
"date": 0.0006491516251116991,
"email": 0.0007636930095031857,
"person_name": 0.002205402823165059,
"phone": 0.0003670136211439967,
"price": 0.000437467941083014,
"unformatted_summary": 0.4980495274066925,
"unformatted_text": 0.08963627368211746
},
"field_id": 7995214,
"location_type": "exact",
"text": "REJECT UM COVERAGE ENTIRELY."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28811,
"end": 28819,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:258",
"confidence": {
"address": 0.002842829329892993,
"category": 0.0007303273305296898,
"date": 0.0012920866720378399,
"email": 0.0014828396961092949,
"person_name": 0.0019998333882540464,
"phone": 0.0008655587444081903,
"price": 0.0012377086095511913,
"unformatted_summary": 0.4641401469707489,
"unformatted_text": 0.1292136013507843
},
"field_id": 7995214,
"location_type": "exact",
"text": "I SELECT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28830,
"end": 28859,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:259",
"confidence": {
"address": 0.0012527775252237916,
"category": 0.0003963963536079973,
"date": 0.0008644009358249605,
"email": 0.00031312002101913095,
"person_name": 0.0007971751620061696,
"phone": 0.00014680960157420486,
"price": 0.0007414930732920766,
"unformatted_summary": 0.5878337621688843,
"unformatted_text": 0.03933540731668472
},
"field_id": 7995214,
"location_type": "exact",
"text": "INDICATED IN THIS APPLICATION"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28861,
"end": 28862,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:260",
"confidence": {
"address": 0.002579983090981841,
"category": 0.00042670784750953317,
"date": 0.0006929534720256925,
"email": 0.001091367332264781,
"person_name": 0.0025539749767631292,
"phone": 0.00043509737588465214,
"price": 0.0006039254367351532,
"unformatted_summary": 0.39064618945121765,
"unformatted_text": 0.060395825654268265
},
"field_id": 7995214,
"location_type": "exact",
"text": "2"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28864,
"end": 28868,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:261",
"confidence": {
"address": 0.0032004842069000006,
"category": 0.0010523524833843112,
"date": 0.0014309254474937916,
"email": 0.0016323276795446873,
"person_name": 0.0048050242476165295,
"phone": 0.0011979297269135714,
"price": 0.0008838432841002941,
"unformatted_summary": 0.3637737035751343,
"unformatted_text": 0.15987347066402435
},
"field_id": 7995214,
"location_type": "exact",
"text": "I RE"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28873,
"end": 28901,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:262",
"confidence": {
"address": 0.0035659298300743103,
"category": 0.0007695088861510158,
"date": 0.002466560574248433,
"email": 0.0019157686037942767,
"person_name": 0.006718974560499191,
"phone": 0.0007796873105689883,
"price": 0.0009593960712663829,
"unformatted_summary": 0.5075228214263916,
"unformatted_text": 0.10743473470211029
},
"field_id": 7995214,
"location_type": "exact",
"text": "UM COVERAGE IN ITS ENTIRETY."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28938,
"end": 28945,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:263",
"confidence": {
"address": 0.01151356939226389,
"category": 0.003503616899251938,
"date": 0.002018244471400976,
"email": 0.0026917902287095785,
"person_name": 0.005347824655473232,
"phone": 0.0008658902952447534,
"price": 0.002989167347550392,
"unformatted_summary": 0.35441094636917114,
"unformatted_text": 0.1241975650191307
},
"field_id": 7995214,
"location_type": "exact",
"text": "ONLY IN"
},
{
"label": "unformatted_text",
"spans": [
{
"start": 28955,
"end": 28956,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:264",
"confidence": {
"address": 0.003477455349639058,
"category": 0.0014256428694352508,
"date": 0.0036260925699025393,
"email": 0.007153698243200779,
"person_name": 0.003382108174264431,
"phone": 0.001981091918423772,
"price": 0.0007102927193045616,
"unformatted_summary": 0.19795376062393188,
"unformatted_text": 0.2602609395980835
},
"field_id": 7995213,
"location_type": "exact",
"text": "I"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 28957,
"end": 28980,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:265",
"confidence": {
"address": 0.003222184721380472,
"category": 0.0003655045584309846,
"date": 0.0018717595376074314,
"email": 0.004332459531724453,
"person_name": 0.003018431132659316,
"phone": 0.000991440610960126,
"price": 0.0006829483318142593,
"unformatted_summary": 0.6050145626068115,
"unformatted_text": 0.13054543733596802
},
"field_id": 7995214,
"location_type": "exact",
"text": "ACKNOWLEDGE THAT I HAVE"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29006,
"end": 29017,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:266",
"confidence": {
"address": 0.010130943730473518,
"category": 0.0010303579038009048,
"date": 0.001751823234371841,
"email": 0.0022072913125157356,
"person_name": 0.0031828030478209257,
"phone": 0.0018412336939945817,
"price": 0.00498543307185173,
"unformatted_summary": 0.4949341118335724,
"unformatted_text": 0.0898841843008995
},
"field_id": 7995214,
"location_type": "exact",
"text": "EQUAL TO MY"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29036,
"end": 29042,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:268",
"confidence": {
"address": 0.005550242494791746,
"category": 0.000593431992456317,
"date": 0.0014668430667370558,
"email": 0.0033412196207791567,
"person_name": 0.0017048519803211093,
"phone": 0.0006879662396386266,
"price": 0.00099853309802711,
"unformatted_summary": 0.520490825176239,
"unformatted_text": 0.05516922101378441
},
"field_id": 7995214,
"location_type": "exact",
"text": "I HAVE"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29063,
"end": 29092,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:269",
"confidence": {
"address": 0.004479441326111555,
"category": 0.00086151686264202,
"date": 0.0015171276172623038,
"email": 0.0010675822850316763,
"person_name": 0.001980528701096773,
"phone": 0.0003340523107908666,
"price": 0.0017538939137011766,
"unformatted_summary": 0.5771130323410034,
"unformatted_text": 0.03194824606180191
},
"field_id": 7995214,
"location_type": "exact",
"text": "INDICATED IN THIS APPLICATION"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29096,
"end": 29100,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:270",
"confidence": {
"address": 0.004093307536095381,
"category": 0.007001732941716909,
"date": 0.007152042351663113,
"email": 0.0032359987962991,
"person_name": 0.003389021148905158,
"phone": 0.00041855350718833506,
"price": 0.0012760445242747664,
"unformatted_summary": 0.27881401777267456,
"unformatted_text": 0.15342222154140472
},
"field_id": 7995214,
"location_type": "exact",
"text": "PORT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29106,
"end": 29179,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:271",
"confidence": {
"address": 0.002099504927173257,
"category": 0.0008119135163724422,
"date": 0.0037361206486821175,
"email": 0.0012723118998110294,
"person_name": 0.0011283033527433872,
"phone": 0.0003918955917470157,
"price": 0.0005929553299210966,
"unformatted_summary": 0.6318241357803345,
"unformatted_text": 0.046497806906700134
},
"field_id": 7995214,
"location_type": "exact",
"text": "THE STATEMENTS (ANSWERS) GIVEN ABOVE ARE TRUE AND ACCURATE. THE APPLICANT"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29193,
"end": 29293,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:272",
"confidence": {
"address": 0.0011568485060706735,
"category": 0.0003254981420468539,
"date": 0.0014336637686938047,
"email": 0.0008965182350948453,
"person_name": 0.002214389154687524,
"phone": 0.0002189340302720666,
"price": 0.0007386677316389978,
"unformatted_summary": 0.7151288390159607,
"unformatted_text": 0.067136749625206
},
"field_id": 7995214,
"location_type": "exact",
"text": "ULLY CONCEALED OR MISREPRESENTED ANY MATERIAL FACT OR CIRCUMSTANCE CONCERNING THIS\nAPPLICATION. THIS"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 29306,
"end": 29334,
"page_num": 10
}
],
"span_id": "58853:c:82569:idx:273",
"confidence": {
"address": 0.0017483612755313516,
"category": 0.0010969288414344192,
"date": 0.0007895570015534759,
"email": 0.0012784067075699568,
"person_name": 0.0009546863147988915,
"phone": 0.0004893540171906352,
"price": 0.00131730898283422,
"unformatted_summary": 0.4422217011451721,
"unformatted_text": 0.04677027463912964
},
"field_id": 7995214,
"location_type": "exact",
"text": "DOES NOT CONSTITUTE A BINDER"
}
]
},
"components": {}
}
},
{
"submissionfile_id": 58854,
"etl_output": "indico-file:///storage/submission/20869/39855/58854/etl_output.json",
"input_filename": "Atlantic -23-24 SOV COPE.xls",
"input_filepath": "indico-file:///storage/submission/20869/39855/58854.xls",
"input_filesize": 140800,
"model_results": {
"ORIGINAL": {
"18584": [],
"18585": []
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"18584": [],
"18585": []
},
"components": {}
}
},
{
"submissionfile_id": 58855,
"etl_output": "indico-file:///storage/submission/20869/39855/58855/etl_output.json",
"input_filename": "Attachment.pdf",
"input_filepath": "indico-file:///storage/submission/20869/39855/58855.pdf",
"input_filesize": 24685,
"model_results": {
"ORIGINAL": {
"18584": [],
"18585": [
{
"label": "date",
"spans": [
{
"start": 152,
"end": 160,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:0",
"confidence": {
"address": 0.00012349706958048046,
"category": 0.000040418002754449844,
"date": 0.993321418762207,
"email": 0.00005827796849189326,
"person_name": 0.00007253682997543365,
"phone": 0.00002462027441652026,
"price": 0.00003085913704126142,
"unformatted_summary": 0.0002892166958190501,
"unformatted_text": 0.000011221209206269123
},
"field_id": null,
"location_type": "exact",
"text": "09-17-22"
},
{
"label": "date",
"spans": [
{
"start": 190,
"end": 198,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:1",
"confidence": {
"address": 0.00020985546871088445,
"category": 0.00003096856380579993,
"date": 0.986362099647522,
"email": 0.0001858229807112366,
"person_name": 0.00013331745867617428,
"phone": 0.00006368501635733992,
"price": 0.00009420098649570718,
"unformatted_summary": 0.0006675977492704988,
"unformatted_text": 0.00003636797919170931
},
"field_id": null,
"location_type": "exact",
"text": "09-30-22"
},
{
"label": "date",
"spans": [
{
"start": 228,
"end": 236,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:2",
"confidence": {
"address": 0.00020626778132282197,
"category": 0.00002842133108060807,
"date": 0.9381595849990845,
"email": 0.00037359545240178704,
"person_name": 0.00011944635480176657,
"phone": 0.000104810249467846,
"price": 0.00014190777437761426,
"unformatted_summary": 0.0007579822558909655,
"unformatted_text": 0.000054994248785078526
},
"field_id": null,
"location_type": "exact",
"text": "09-01-22"
},
{
"label": "date",
"spans": [
{
"start": 320,
"end": 321,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:3",
"confidence": {
"address": 0.0000393410082324408,
"category": 0.000016082571164588444,
"date": 0.2593590319156647,
"email": 0.00005910112668061629,
"person_name": 0.00001709266143734567,
"phone": 0.000025061674023163505,
"price": 0.000042134674004046246,
"unformatted_summary": 0.000051649691158672795,
"unformatted_text": 0.000010485588063602336
},
"field_id": null,
"location_type": "exact",
"text": "-"
},
{
"label": "date",
"spans": [
{
"start": 674,
"end": 676,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:4",
"confidence": {
"address": 0.0000494884152431041,
"category": 0.00002906079316744581,
"date": 0.403513103723526,
"email": 0.00004969121073372662,
"person_name": 0.0000690062515786849,
"phone": 0.000019067842004005797,
"price": 0.00003978205131716095,
"unformatted_summary": 0.00009130132821155712,
"unformatted_text": 0.00007690690108574927
},
"field_id": null,
"location_type": "exact",
"text": "07"
},
{
"label": "date",
"spans": [
{
"start": 1881,
"end": 1884,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:5",
"confidence": {
"address": 0.00006039000072632916,
"category": 0.000012563580639834981,
"date": 0.6792367696762085,
"email": 0.00012771887122653425,
"person_name": 0.00006163527723401785,
"phone": 0.00002363084422540851,
"price": 0.00013935990864410996,
"unformatted_summary": 0.00008740530756767839,
"unformatted_text": 0.00006050506272003986
},
"field_id": null,
"location_type": "exact",
"text": "05-"
},
{
"label": "date",
"spans": [
{
"start": 3164,
"end": 3172,
"page_num": 1
}
],
"span_id": "58855:c:82569:idx:10",
"confidence": {
"address": 0.00035313129774294794,
"category": 0.00018097288557328284,
"date": 0.9876553416252136,
"email": 0.00005665846401825547,
"person_name": 0.00012205253733554855,
"phone": 0.00002644476990099065,
"price": 0.000038554120692424476,
"unformatted_summary": 0.00040298287058249116,
"unformatted_text": 0.000014587650184694212
},
"field_id": null,
"location_type": "exact",
"text": "09-17-22"
},
{
"label": "date",
"spans": [
{
"start": 3202,
"end": 3210,
"page_num": 1
}
],
"span_id": "58855:c:82569:idx:11",
"confidence": {
"address": 0.0003358170797582716,
"category": 0.00008382024680031464,
"date": 0.9700721502304077,
"email": 0.0003482651663944125,
"person_name": 0.00016855484864208847,
"phone": 0.0001069673671736382,
"price": 0.00014893112529534847,
"unformatted_summary": 0.0009039813885465264,
"unformatted_text": 0.00005593897731159814
},
"field_id": null,
"location_type": "exact",
"text": "09-30-22"
},
{
"label": "date",
"spans": [
{
"start": 3240,
"end": 3248,
"page_num": 1
}
],
"span_id": "58855:c:82569:idx:12",
"confidence": {
"address": 0.0002445414138492197,
"category": 0.000076975193223916,
"date": 0.9217089414596558,
"email": 0.0003662421368062496,
"person_name": 0.00010314411338185892,
"phone": 0.0001491579896537587,
"price": 0.0001468945702072233,
"unformatted_summary": 0.0007036128081381321,
"unformatted_text": 0.00005535448872251436
},
"field_id": null,
"location_type": "exact",
"text": "09-01-22"
},
{
"label": "date",
"spans": [
{
"start": 3279,
"end": 3281,
"page_num": 1
}
],
"span_id": "58855:c:82569:idx:13",
"confidence": {
"address": 0.0004897693288512528,
"category": 0.00009146495722234249,
"date": 0.5774887800216675,
"email": 0.00008320865890709683,
"person_name": 0.000025670078684925102,
"phone": 0.00009749476885190234,
"price": 0.00007233707583509386,
"unformatted_summary": 0.00004369827001937665,
"unformatted_text": 0.000035048309655394405
},
"field_id": null,
"location_type": "exact",
"text": "CS"
},
{
"label": "date",
"spans": [
{
"start": 6274,
"end": 6282,
"page_num": 2
}
],
"span_id": "58855:c:82569:idx:16",
"confidence": {
"address": 6.379249043675372e-6,
"category": 6.4306527747248765e-6,
"date": 0.9999270439147949,
"email": 2.8478802960307803e-6,
"person_name": 4.264810741005931e-6,
"phone": 7.656311140635808e-7,
"price": 6.1650962379644625e-6,
"unformatted_summary": 0.000019439728930592537,
"unformatted_text": 9.626184009903227e-7
},
"field_id": null,
"location_type": "exact",
"text": "09-17-22"
},
{
"label": "date",
"spans": [
{
"start": 6312,
"end": 6320,
"page_num": 2
}
],
"span_id": "58855:c:82569:idx:17",
"confidence": {
"address": 0.000050228431064169854,
"category": 0.00001533915383333806,
"date": 0.9416035413742065,
"email": 0.0005647788639180362,
"person_name": 0.00016941045760177076,
"phone": 0.00010236194066237658,
"price": 0.0001392291596857831,
"unformatted_summary": 0.00024610082618892193,
"unformatted_text": 0.000035045406548306346
},
"field_id": null,
"location_type": "exact",
"text": "09-30-22"
},
{
"label": "date",
"spans": [
{
"start": 6350,
"end": 6356,
"page_num": 2
}
],
"span_id": "58855:c:82569:idx:18",
"confidence": {
"address": 0.000059794481785502285,
"category": 0.00001785793574526906,
"date": 0.8171414136886597,
"email": 0.000682297395542264,
"person_name": 0.0001789990783436224,
"phone": 0.00012977077858522534,
"price": 0.0001598224916961044,
"unformatted_summary": 0.000256875908235088,
"unformatted_text": 0.00005826378401252441
},
"field_id": null,
"location_type": "exact",
"text": "09-01-"
},
{
"label": "date",
"spans": [
{
"start": 9335,
"end": 9343,
"page_num": 3
}
],
"span_id": "58855:c:82569:idx:22",
"confidence": {
"address": 0.00001621969568077475,
"category": 6.622598448302597e-6,
"date": 0.9981356859207153,
"email": 0.000039697195461485535,
"person_name": 0.0000323789645335637,
"phone": 0.00001712044650048483,
"price": 0.000031098727049538866,
"unformatted_summary": 0.00008932803029892966,
"unformatted_text": 7.4486406447249465e-6
},
"field_id": null,
"location_type": "exact",
"text": "09-17-22"
},
{
"label": "date",
"spans": [
{
"start": 9373,
"end": 9381,
"page_num": 3
}
],
"span_id": "58855:c:82569:idx:23",
"confidence": {
"address": 0.00008420585800195113,
"category": 0.000010320743967895396,
"date": 0.9074059724807739,
"email": 0.0005113511579111218,
"person_name": 0.00013718447007704526,
"phone": 0.00006706085696350783,
"price": 0.00012375767983030528,
"unformatted_summary": 0.0004899543710052967,
"unformatted_text": 0.00003289292362751439
},
"field_id": null,
"location_type": "exact",
"text": "09-30-22"
},
{
"label": "date",
"spans": [
{
"start": 9411,
"end": 9417,
"page_num": 3
}
],
"span_id": "58855:c:82569:idx:24",
"confidence": {
"address": 0.00008016498031793162,
"category": 9.731727914186195e-6,
"date": 0.7364935278892517,
"email": 0.0005980964633636177,
"person_name": 0.00011422618990764022,
"phone": 0.00006873939128126949,
"price": 0.00011763426300603896,
"unformatted_summary": 0.0004500294162426144,
"unformatted_text": 0.000039380029193125665
},
"field_id": null,
"location_type": "exact",
"text": "09-01-"
},
{
"label": "date",
"spans": [
{
"start": 12424,
"end": 12432,
"page_num": 4
}
],
"span_id": "58855:c:82569:idx:28",
"confidence": {
"address": 0.000011547656868060585,
"category": 0.000018212856957688928,
"date": 0.999730110168457,
"email": 6.849419150967151e-6,
"person_name": 0.000012548279300972354,
"phone": 3.7120585147931706e-6,
"price": 6.825239779573167e-6,
"unformatted_summary": 0.00004635885125026107,
"unformatted_text": 2.6067689304909436e-6
},
"field_id": null,
"location_type": "exact",
"text": "09-17-22"
},
{
"label": "date",
"spans": [
{
"start": 12500,
"end": 12508,
"page_num": 4
}
],
"span_id": "58855:c:82569:idx:30",
"confidence": {
"address": 0.00037038925802335143,
"category": 0.00018567490042187274,
"date": 0.9862650632858276,
"email": 0.00011625151091720909,
"person_name": 0.0001882661454146728,
"phone": 0.00007119039219105616,
"price": 0.0001475816243328154,
"unformatted_summary": 0.0009892918169498444,
"unformatted_text": 0.00004071872535860166
},
"field_id": null,
"location_type": "exact",
"text": "09-30-22"
},
{
"label": "date",
"spans": [
{
"start": 13434,
"end": 13435,
"page_num": 4
}
],
"span_id": "58855:c:82569:idx:31",
"confidence": {
"address": 0.0000722871845937334,
"category": 0.00003453801400610246,
"date": 0.7091405391693115,
"email": 0.00009050257358467206,
"person_name": 0.00005439233063952997,
"phone": 0.00007164588896557689,
"price": 0.00005991721263853833,
"unformatted_summary": 0.00019647297449409962,
"unformatted_text": 0.00008267558587249368
},
"field_id": null,
"location_type": "exact",
"text": "-"
},
{
"label": "date",
"spans": [
{
"start": 13437,
"end": 13438,
"page_num": 4
}
],
"span_id": "58855:c:82569:idx:32",
"confidence": {
"address": 0.00010250254854327068,
"category": 0.00004061125946464017,
"date": 0.7634928822517395,
"email": 0.0001511010923422873,
"person_name": 0.000054160300351213664,
"phone": 0.00006238379864953458,
"price": 0.0000443827775598038,
"unformatted_summary": 0.00016781609156168997,
"unformatted_text": 0.00005701992631657049
},
"field_id": null,
"location_type": "exact",
"text": "-"
},
{
"label": "date",
"spans": [
{
"start": 14817,
"end": 14826,
"page_num": 4
}
],
"span_id": "58855:c:82569:idx:34",
"confidence": {
"address": 0.004447032231837511,
"category": 0.003105941927060485,
"date": 0.9478277564048767,
"email": 0.004235375206917524,
"person_name": 0.0004369857197161764,
"phone": 0.0004413358692545444,
"price": 0.0011019258527085185,
"unformatted_summary": 0.01604972779750824,
"unformatted_text": 0.0003010541549883783
},
"field_id": null,
"location_type": "exact",
"text": "9-18-2022"
}
]
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"18584": [
{
"label": "date",
"spans": [
{
"start": 102,
"end": 105,
"page_num": 0
}
],
"span_id": "58855:c:82567:idx:0",
"confidence": {
"address": 0.0040628560818731785,
"category": 0.004823803901672363,
"date": 0.28481513261795044,
"email": 0.0019867357332259417,
"person_name": 0.001870528096333146,
"phone": 0.0009346947772428393,
"price": 0.001596849993802607,
"unformatted_summary": 0.005238826386630535,
"unformatted_text": 0.000060698632296407595
},
"field_id": 7995216,
"location_type": "exact",
"text": "311",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 1,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 152,
"end": 160,
"page_num": 0
}
],
"span_id": "58855:c:82567:idx:1",
"confidence": {
"address": 0.000563153880648315,
"category": 0.00048346337280236185,
"date": 0.9581809043884277,
"email": 0.0005316691240295768,
"person_name": 0.0002861734537873417,
"phone": 0.000137630122480914,
"price": 0.00023853224411141127,
"unformatted_summary": 0.003263655351474881,
"unformatted_text": 0.000055474309192504734
},
"field_id": 7995216,
"location_type": "exact",
"text": "09-17-22",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 2,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 190,
"end": 198,
"page_num": 0
}
],
"span_id": "58855:c:82567:idx:2",
"confidence": {
"address": 0.0010105650871992111,
"category": 0.00028497414314188063,
"date": 0.8873621225357056,
"email": 0.0014228133950382471,
"person_name": 0.0002819595974870026,
"phone": 0.00017516074876766652,
"price": 0.0004357426951173693,
"unformatted_summary": 0.00761746009811759,
"unformatted_text": 0.0000781019261921756
},
"field_id": 7995216,
"location_type": "exact",
"text": "09-30-22",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 2,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 228,
"end": 236,
"page_num": 0
}
],
"span_id": "58855:c:82567:idx:3",
"confidence": {
"address": 0.0007375138811767101,
"category": 0.00015207738033495843,
"date": 0.7580708861351013,
"email": 0.0017177058616653085,
"person_name": 0.0001799756137188524,
"phone": 0.00019265766604803503,
"price": 0.00045235949801281095,
"unformatted_summary": 0.004069234244525433,
"unformatted_text": 0.00006776836380595341
},
"field_id": 7995216,
"location_type": "exact",
"text": "09-01-22",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 2,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2819,
"end": 2833,
"page_num": 0
}
],
"span_id": "58855:c:82567:idx:4",
"confidence": {
"address": 0.000671694811899215,
"category": 0.004689772613346577,
"date": 0.0033677141182124615,
"email": 0.0054813409224152565,
"person_name": 0.0015760723035782576,
"phone": 0.0007274793460965157,
"price": 0.010478141717612743,
"unformatted_summary": 0.49035924673080444,
"unformatted_text": 0.004471669904887676
},
"field_id": 7995214,
"location_type": "exact",
"text": "and\naffiliates",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2848,
"end": 2875,
"page_num": 0
}
],
"span_id": "58855:c:82567:idx:5",
"confidence": {
"address": 0.00010319811553927138,
"category": 0.00038894079625606537,
"date": 0.00024319054500665516,
"email": 0.0013235254446044564,
"person_name": 0.00006500835297629237,
"phone": 0.00007257033576024696,
"price": 0.0009119546157307923,
"unformatted_summary": 0.5615914463996887,
"unformatted_text": 0.0010388144291937351
},
"field_id": 7995214,
"location_type": "exact",
"text": "redisclosure or use of this",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 3075,
"end": 3078,
"page_num": 1
}
],
"span_id": "58855:c:82567:idx:6",
"confidence": {
"address": 0.23087036609649658,
"category": 0.04551104083657265,
"date": 0.003251843387261033,
"email": 0.023778574541211128,
"person_name": 0.17851170897483826,
"phone": 0.0007363362237811089,
"price": 0.013588376343250275,
"unformatted_summary": 0.011535120196640491,
"unformatted_text": 0.0017008886206895113
},
"field_id": 7995220,
"location_type": "exact",
"text": "ATL",
"groupings": []
},
{
"label": "person_name",
"spans": [
{
"start": 3084,
"end": 3086,
"page_num": 1
}
],
"span_id": "58855:c:82567:idx:7",
"confidence": {
"address": 0.20339787006378174,
"category": 0.04520450159907341,
"date": 0.004617085214704275,
"email": 0.021181752905249596,
"person_name": 0.255741685628891,
"phone": 0.0011282243067398667,
"price": 0.01443060114979744,
"unformatted_summary": 0.01407052855938673,
"unformatted_text": 0.0018380075925961137
},
"field_id": 7995219,
"location_type": "exact",
"text": "DE",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 3096,
"end": 3101,
"page_num": 1
}
],
"span_id": "58855:c:82567:idx:8",
"confidence": {
"address": 0.230935737490654,
"category": 0.04135145619511604,
"date": 0.005043209530413151,
"email": 0.028002005070447922,
"person_name": 0.19630388915538788,
"phone": 0.0009792833589017391,
"price": 0.015409529209136963,
"unformatted_summary": 0.012938166037201881,
"unformatted_text": 0.0022204953711479902
},
"field_id": 7995220,
"location_type": "exact",
"text": "GROUP",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 3164,
"end": 3172,
"page_num": 1
}
],
"span_id": "58855:c:82567:idx:9",
"confidence": {
"address": 0.0010514854220673442,
"category": 0.0008154441602528095,
"date": 0.9201949834823608,
"email": 0.0006064513581804931,
"person_name": 0.0005134429666213691,
"phone": 0.00010418974852655083,
"price": 0.0002806573174893856,
"unformatted_summary": 0.002970836590975523,
"unformatted_text": 0.00007974742038641125
},
"field_id": 7995216,
"location_type": "exact",
"text": "09-17-22",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 5,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 3204,
"end": 3205,
"page_num": 1
}
],
"span_id": "58855:c:82567:idx:10",
"confidence": {
"address": 0.0004379038291517645,
"category": 0.00016219094686675817,
"date": 0.4048549234867096,
"email": 0.00035891507286578417,
"person_name": 0.00015161288320086896,
"phone": 0.0001623989810468629,
"price": 0.0002594177785795182,
"unformatted_summary": 0.001246939180418849,
"unformatted_text": 0.000060554564697667956
},
"field_id": 7995216,
"location_type": "exact",
"text": "-",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 5,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 3207,
"end": 3208,
"page_num": 1
}
],
"span_id": "58855:c:82567:idx:11",
"confidence": {
"address": 0.000398862233851105,
"category": 0.00014039034431334585,
"date": 0.3896782100200653,
"email": 0.0006022083107382059,
"person_name": 0.00016888888785615563,
"phone": 0.00014063903654459864,
"price": 0.0002138999116141349,
"unformatted_summary": 0.001177700120024383,
"unformatted_text": 0.00005353717278921977
},
"field_id": 7995216,
"location_type": "exact",
"text": "-",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 5,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 3242,
"end": 3243,
"page_num": 1
}
],
"span_id": "58855:c:82567:idx:12",
"confidence": {
"address": 0.0002893258351832628,
"category": 0.00015575600264128298,
"date": 0.42783960700035095,
"email": 0.0003021393495146185,
"person_name": 0.00010647599992807955,
"phone": 0.000230304867727682,
"price": 0.0003316124784760177,
"unformatted_summary": 0.0010081834625452757,
"unformatted_text": 0.00006265517004067078
},
"field_id": 7995216,
"location_type": "exact",
"text": "-",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 5,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 3245,
"end": 3246,
"page_num": 1
}
],
"span_id": "58855:c:82567:idx:13",
"confidence": {
"address": 0.00022843130864202976,
"category": 0.0001449872215744108,
"date": 0.5072406530380249,
"email": 0.0003871306835208088,
"person_name": 0.00012238993076607585,
"phone": 0.0002225819625891745,
"price": 0.0002782107621897012,
"unformatted_summary": 0.0009389945771545172,
"unformatted_text": 0.00006079113882151432
},
"field_id": 7995216,
"location_type": "exact",
"text": "-",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 5,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 5886,
"end": 6082,
"page_num": 1
}
],
"span_id": "58855:c:82567:idx:14",
"confidence": {
"address": 0.00045610693632625043,
"category": 0.0008934317156672478,
"date": 0.0007217620732262731,
"email": 0.006366461515426636,
"person_name": 0.001950295059941709,
"phone": 0.0002003625122597441,
"price": 0.0023762236814945936,
"unformatted_summary": 0.9003187417984009,
"unformatted_text": 0.009024564176797867
},
"field_id": 7995214,
"location_type": "exact",
"text": "The information contained in this report is proprietary to The Cincinnati Insurance Company and its subsidiaries and\naffiliates. Unauthorized redisclosure or use of this information is prohibited.",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 6274,
"end": 6282,
"page_num": 2
}
],
"span_id": "58855:c:82567:idx:15",
"confidence": {
"address": 8.643942237540614e-6,
"category": 0.000013709670383832417,
"date": 0.999854564666748,
"email": 0.000013073222362436354,
"person_name": 3.868105068249861e-6,
"phone": 7.864560984671698e-7,
"price": 0.000013049881090410054,
"unformatted_summary": 0.000020853696696576662,
"unformatted_text": 1.4251361335482216e-6
},
"field_id": 7995216,
"location_type": "exact",
"text": "09-17-22",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 7,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8608,
"end": 8637,
"page_num": 2
}
],
"span_id": "58855:c:82567:idx:16",
"confidence": {
"address": 0.00007938869384815916,
"category": 0.00017678795848041773,
"date": 0.00013583835971076041,
"email": 0.0008715426083654165,
"person_name": 0.000013823424524161965,
"phone": 0.00004430945773492567,
"price": 0.00025377111160196364,
"unformatted_summary": 0.5768125653266907,
"unformatted_text": 0.00011569719936233014
},
"field_id": 7995214,
"location_type": "exact",
"text": "information contained in this",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8645,
"end": 8662,
"page_num": 2
}
],
"span_id": "58855:c:82567:idx:17",
"confidence": {
"address": 0.00016648306336719543,
"category": 0.00026545298169367015,
"date": 0.00032036329503171146,
"email": 0.0020982895512133837,
"person_name": 0.00006053706238162704,
"phone": 0.00009359702380606905,
"price": 0.0010813376866281033,
"unformatted_summary": 0.7057086825370789,
"unformatted_text": 0.0001975110062630847
},
"field_id": 7995214,
"location_type": "exact",
"text": "is proprietary to",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8696,
"end": 8731,
"page_num": 2
}
],
"span_id": "58855:c:82567:idx:18",
"confidence": {
"address": 0.00045123996096663177,
"category": 0.0016319348942488432,
"date": 0.0013464963994920254,
"email": 0.006116844248026609,
"person_name": 0.0009694302571006119,
"phone": 0.00023801907082088292,
"price": 0.005366398487240076,
"unformatted_summary": 0.8254120945930481,
"unformatted_text": 0.002775672124698758
},
"field_id": 7995214,
"location_type": "exact",
"text": "and its subsidiaries and\naffiliates",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8733,
"end": 8799,
"page_num": 2
}
],
"span_id": "58855:c:82567:idx:19",
"confidence": {
"address": 0.00018834146612789482,
"category": 0.00018667749827727675,
"date": 0.0001256805844604969,
"email": 0.00114845868665725,
"person_name": 0.00003867638224619441,
"phone": 0.00006559969915542752,
"price": 0.0005440058303065598,
"unformatted_summary": 0.9210385680198669,
"unformatted_text": 0.0009977120207622647
},
"field_id": 7995214,
"location_type": "exact",
"text": "Unauthorized redisclosure or use of this information is prohibited",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 9335,
"end": 9337,
"page_num": 3
}
],
"span_id": "58855:c:82567:idx:20",
"confidence": {
"address": 0.00006514532287837937,
"category": 0.000051649916713358834,
"date": 0.664759635925293,
"email": 0.0002927596215158701,
"person_name": 0.0001641380658838898,
"phone": 0.0001318685244768858,
"price": 0.00020047809812240303,
"unformatted_summary": 0.0008152719237841666,
"unformatted_text": 0.00004659991100197658
},
"field_id": 7995216,
"location_type": "exact",
"text": "09",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 10,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 9338,
"end": 9340,
"page_num": 3
}
],
"span_id": "58855:c:82567:idx:21",
"confidence": {
"address": 0.00005527332177734934,
"category": 0.000025959900085581467,
"date": 0.6721591353416443,
"email": 0.0005714615690521896,
"person_name": 0.00010074591409647837,
"phone": 0.00008025548595469445,
"price": 0.00011930510663660243,
"unformatted_summary": 0.000687675375957042,
"unformatted_text": 0.000022541276848642156
},
"field_id": 7995216,
"location_type": "exact",
"text": "17",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 10,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 9341,
"end": 9343,
"page_num": 3
}
],
"span_id": "58855:c:82567:idx:22",
"confidence": {
"address": 0.00005401076850830577,
"category": 0.000019867027731379494,
"date": 0.315624862909317,
"email": 0.0004993182374164462,
"person_name": 0.00006220301293069497,
"phone": 0.00004430686749401502,
"price": 0.0001003174256766215,
"unformatted_summary": 0.0005593976238742471,
"unformatted_text": 0.000013686100828635972
},
"field_id": 7995216,
"location_type": "exact",
"text": "22",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 10,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11955,
"end": 12009,
"page_num": 3
}
],
"span_id": "58855:c:82567:idx:23",
"confidence": {
"address": 0.000057406072301091626,
"category": 0.00021058898710180074,
"date": 0.0002486953744664788,
"email": 0.0004990687593817711,
"person_name": 0.000012445380889403168,
"phone": 0.000042656087316572666,
"price": 0.0003704872215166688,
"unformatted_summary": 0.784069836139679,
"unformatted_text": 0.00012544254423119128
},
"field_id": 7995214,
"location_type": "exact",
"text": "information contained in this report is proprietary to",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12043,
"end": 12078,
"page_num": 3
}
],
"span_id": "58855:c:82567:idx:24",
"confidence": {
"address": 0.0002941777929663658,
"category": 0.0020597996190190315,
"date": 0.0017486996948719025,
"email": 0.003186756744980812,
"person_name": 0.0004201789270155132,
"phone": 0.00018832542991731316,
"price": 0.0041515338234603405,
"unformatted_summary": 0.7194530963897705,
"unformatted_text": 0.00231751287356019
},
"field_id": 7995214,
"location_type": "exact",
"text": "and its subsidiaries and\naffiliates",
"groupings": []
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12080,
"end": 12146,
"page_num": 3
}
],
"span_id": "58855:c:82567:idx:25",
"confidence": {
"address": 0.00014083259156905115,
"category": 0.00039843571721576154,
"date": 0.0002776116889435798,
"email": 0.0009175331797450781,
"person_name": 0.000028957838367205113,
"phone": 0.00007425220246659592,
"price": 0.00042458807001821697,
"unformatted_summary": 0.9014272093772888,
"unformatted_text": 0.0011550987837836146
},
"field_id": 7995214,
"location_type": "exact",
"text": "Unauthorized redisclosure or use of this information is prohibited",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 12424,
"end": 12432,
"page_num": 4
}
],
"span_id": "58855:c:82567:idx:26",
"confidence": {
"address": 0.0001136487553594634,
"category": 0.00007507511327276006,
"date": 0.9897680282592773,
"email": 0.00012789436732418835,
"person_name": 0.00014766675303690135,
"phone": 0.00003061073221033439,
"price": 0.00005843621329404414,
"unformatted_summary": 0.0006002978188917041,
"unformatted_text": 0.000019684772269101813
},
"field_id": 7995216,
"location_type": "exact",
"text": "09-17-22",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 14,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "address",
"spans": [
{
"start": 12453,
"end": 12456,
"page_num": 4
}
],
"span_id": "58855:c:82567:idx:27",
"confidence": {
"address": 0.3790200352668762,
"category": 0.057418350130319595,
"date": 0.00100174848921597,
"email": 0.0048391749151051044,
"person_name": 0.018225548788905144,
"phone": 0.00793893076479435,
"price": 0.004765981342643499,
"unformatted_summary": 0.028179572895169258,
"unformatted_text": 0.0003979491884820163
},
"field_id": 7995220,
"location_type": "exact",
"text": "& S",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 12459,
"end": 12462,
"page_num": 4
}
],
"span_id": "58855:c:82567:idx:28",
"confidence": {
"address": 0.2976919710636139,
"category": 0.03322627395391464,
"date": 0.0010678936960175633,
"email": 0.00519369263201952,
"person_name": 0.016464266926050186,
"phone": 0.007458944339305162,
"price": 0.003992850426584482,
"unformatted_summary": 0.016188744455575943,
"unformatted_text": 0.00042674076394177973
},
"field_id": 7995220,
"location_type": "exact",
"text": "COR",
"groupings": []
},
{
"label": "address",
"spans": [
{
"start": 12465,
"end": 12470,
"page_num": 4
}
],
"span_id": "58855:c:82567:idx:29",
"confidence": {
"address": 0.28002825379371643,
"category": 0.03728397563099861,
"date": 0.0015941032906994224,
"email": 0.005214595701545477,
"person_name": 0.015387004241347313,
"phone": 0.009128748439252377,
"price": 0.003963909111917019,
"unformatted_summary": 0.014135431498289108,
"unformatted_text": 0.0004362560575827956
},
"field_id": 7995220,
"location_type": "exact",
"text": "ATION",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 12500,
"end": 12508,
"page_num": 4
}
],
"span_id": "58855:c:82567:idx:30",
"confidence": {
"address": 0.0015953921247273684,
"category": 0.0008579121786169708,
"date": 0.8121681213378906,
"email": 0.0016553308814764023,
"person_name": 0.0009740170207805932,
"phone": 0.00030287771369330585,
"price": 0.000767073011957109,
"unformatted_summary": 0.004574950784444809,
"unformatted_text": 0.00014762484352104366
},
"field_id": 7995216,
"location_type": "exact",
"text": "09-30-22",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 14,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 13434,
"end": 13438,
"page_num": 4
}
],
"span_id": "58855:c:82567:idx:31",
"confidence": {
"address": 0.00006804861186537892,
"category": 0.00015016846009530127,
"date": 0.8005854487419128,
"email": 0.0008271162514574826,
"person_name": 0.00006285707058850676,
"phone": 0.00015294864715542644,
"price": 0.00012859299022238702,
"unformatted_summary": 0.0004848712997045368,
"unformatted_text": 0.000040188122511608526
},
"field_id": 7995216,
"location_type": "exact",
"text": "-01-",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 14,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 14620,
"end": 14816,
"page_num": 4
}
],
"span_id": "58855:c:82567:idx:32",
"confidence": {
"address": 0.0005188437062315643,
"category": 0.0006414573290385306,
"date": 0.0006820775452069938,
"email": 0.00500922417268157,
"person_name": 0.0012750389287248254,
"phone": 0.00029469351284205914,
"price": 0.0017560054548084736,
"unformatted_summary": 0.9507296681404114,
"unformatted_text": 0.008572662249207497
},
"field_id": 7995214,
"location_type": "exact",
"text": "The information contained in this report is proprietary to The Cincinnati Insurance Company and its subsidiaries and\naffiliates. Unauthorized redisclosure or use of this information is prohibited.",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 14817,
"end": 14826,
"page_num": 4
}
],
"span_id": "58855:c:82567:idx:33",
"confidence": {
"address": 0.008611205965280533,
"category": 0.012577320449054241,
"date": 0.9596055150032043,
"email": 0.0020657407585531473,
"person_name": 0.0003196213219780475,
"phone": 0.0006670461152680218,
"price": 0.0042749252170324326,
"unformatted_summary": 0.00583234615623951,
"unformatted_text": 0.0004936910117976367
},
"field_id": 7995216,
"location_type": "exact",
"text": "9-18-2022",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 15,
"group_id": "18584:Linked Label Group 1"
}
]
}
],
"18585": [
{
"label": "unformatted_summary",
"spans": [
{
"start": 2819,
"end": 2826,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:6",
"confidence": {
"address": 0.0008838668582029641,
"category": 0.00391214806586504,
"date": 0.0023479443043470383,
"email": 0.008844219148159027,
"person_name": 0.004435891751199961,
"phone": 0.0004159463569521904,
"price": 0.011430620215833187,
"unformatted_summary": 0.4753144681453705,
"unformatted_text": 0.005595849826931953
},
"field_id": 7995214,
"location_type": "exact",
"text": "and\naff"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2829,
"end": 2833,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:7",
"confidence": {
"address": 0.0012652199948206544,
"category": 0.002552852500230074,
"date": 0.006251624319702387,
"email": 0.006559247616678476,
"person_name": 0.0014739648904651403,
"phone": 0.0003775533114094287,
"price": 0.0076690055429935455,
"unformatted_summary": 0.38521936535835266,
"unformatted_text": 0.0030315874610096216
},
"field_id": 7995214,
"location_type": "exact",
"text": "ates"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2837,
"end": 2870,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:8",
"confidence": {
"address": 0.00011638652358669788,
"category": 0.0001687617477728054,
"date": 0.00014914493658579886,
"email": 0.0005569181521423161,
"person_name": 0.000054118856496643275,
"phone": 0.00006281970127020031,
"price": 0.0005835582269355655,
"unformatted_summary": 0.6828634142875671,
"unformatted_text": 0.0011119409464299679
},
"field_id": 7995214,
"location_type": "exact",
"text": "authorized redisclosure or use of"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 2891,
"end": 2901,
"page_num": 0
}
],
"span_id": "58855:c:82569:idx:9",
"confidence": {
"address": 0.00038505991687998176,
"category": 0.0007300020661205053,
"date": 0.00040677879587747157,
"email": 0.0014547095634043217,
"person_name": 0.00015560675819870085,
"phone": 0.00026170804630964994,
"price": 0.0010507979895919561,
"unformatted_summary": 0.6002025604248047,
"unformatted_text": 0.003456386737525463
},
"field_id": 7995214,
"location_type": "exact",
"text": "prohibited"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 5886,
"end": 5959,
"page_num": 1
}
],
"span_id": "58855:c:82569:idx:14",
"confidence": {
"address": 0.0004846002266276628,
"category": 0.0001259657001355663,
"date": 0.00035106472205370665,
"email": 0.0041780658066272736,
"person_name": 0.0031523227225989103,
"phone": 0.00007895159797044471,
"price": 0.0021078342106193304,
"unformatted_summary": 0.8971645832061768,
"unformatted_text": 0.0009346517035737634
},
"field_id": 7995214,
"location_type": "exact",
"text": "The information contained in this report is proprietary to The Cincinnati"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 5970,
"end": 6082,
"page_num": 1
}
],
"span_id": "58855:c:82569:idx:15",
"confidence": {
"address": 0.0003367208410054445,
"category": 0.0010389341041445732,
"date": 0.0012440189020708203,
"email": 0.004457948729395866,
"person_name": 0.0010020521003752947,
"phone": 0.00022437305597122759,
"price": 0.001677276915870607,
"unformatted_summary": 0.891538679599762,
"unformatted_text": 0.014225013554096222
},
"field_id": 7995214,
"location_type": "exact",
"text": "Company and its subsidiaries and\naffiliates. Unauthorized redisclosure or use of this information is prohibited."
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8608,
"end": 8666,
"page_num": 2
}
],
"span_id": "58855:c:82569:idx:19",
"confidence": {
"address": 0.0005117023829370737,
"category": 0.00021066296903882176,
"date": 0.0004170033207628876,
"email": 0.0016463825013488531,
"person_name": 0.00066946423612535,
"phone": 0.00008765012898948044,
"price": 0.0015602379571646452,
"unformatted_summary": 0.6839033961296082,
"unformatted_text": 0.00044306961353868246
},
"field_id": 7995214,
"location_type": "exact",
"text": "information contained in this report is proprietary to The"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8688,
"end": 8731,
"page_num": 2
}
],
"span_id": "58855:c:82569:idx:20",
"confidence": {
"address": 0.00100391311571002,
"category": 0.0016022758791223168,
"date": 0.0020577821414917707,
"email": 0.009278011508286,
"person_name": 0.0035962527617812157,
"phone": 0.0003404043964110315,
"price": 0.006186117883771658,
"unformatted_summary": 0.8440702557563782,
"unformatted_text": 0.0030707221012562513
},
"field_id": 7995214,
"location_type": "exact",
"text": "Company and its subsidiaries and\naffiliates"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 8733,
"end": 8799,
"page_num": 2
}
],
"span_id": "58855:c:82569:idx:21",
"confidence": {
"address": 0.00021445652237161994,
"category": 0.00019785843323916197,
"date": 0.00019394845003262162,
"email": 0.0009627056424506009,
"person_name": 0.00010091092553921044,
"phone": 0.00009301501995651051,
"price": 0.0006283959373831749,
"unformatted_summary": 0.920363187789917,
"unformatted_text": 0.0015340830432251096
},
"field_id": 7995214,
"location_type": "exact",
"text": "Unauthorized redisclosure or use of this information is prohibited"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 11955,
"end": 12009,
"page_num": 3
}
],
"span_id": "58855:c:82569:idx:25",
"confidence": {
"address": 0.00011776476458180696,
"category": 0.0002704460930544883,
"date": 0.0005915280198678374,
"email": 0.0005441015819087625,
"person_name": 0.0000388731095881667,
"phone": 0.00009227223199559376,
"price": 0.0004899058258160949,
"unformatted_summary": 0.5370885133743286,
"unformatted_text": 0.0004611769982147962
},
"field_id": 7995214,
"location_type": "exact",
"text": "information contained in this report is proprietary to"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12043,
"end": 12078,
"page_num": 3
}
],
"span_id": "58855:c:82569:idx:26",
"confidence": {
"address": 0.0006480943993665278,
"category": 0.0014742749044671655,
"date": 0.0026427290868014097,
"email": 0.004491311497986317,
"person_name": 0.0009780873078852892,
"phone": 0.0001481563231209293,
"price": 0.005515064112842083,
"unformatted_summary": 0.6111756563186646,
"unformatted_text": 0.0034435009583830833
},
"field_id": 7995214,
"location_type": "exact",
"text": "and its subsidiaries and\naffiliates"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 12080,
"end": 12146,
"page_num": 3
}
],
"span_id": "58855:c:82569:idx:27",
"confidence": {
"address": 0.00014498813834507018,
"category": 0.00035067726275883615,
"date": 0.00027504927129484713,
"email": 0.0007460045744664967,
"person_name": 0.00007385449134744704,
"phone": 0.000057776342146098614,
"price": 0.0005496766534633934,
"unformatted_summary": 0.8321288228034973,
"unformatted_text": 0.002008242765441537
},
"field_id": 7995214,
"location_type": "exact",
"text": "Unauthorized redisclosure or use of this information is prohibited"
},
{
"label": "address",
"spans": [
{
"start": 12441,
"end": 12470,
"page_num": 4
}
],
"span_id": "58855:c:82569:idx:29",
"confidence": {
"address": 0.7748202681541443,
"category": 0.018928928300738335,
"date": 0.00044243631418794394,
"email": 0.0020373701117932796,
"person_name": 0.014981091022491455,
"phone": 0.0007618056843057275,
"price": 0.0017410627333447337,
"unformatted_summary": 0.004628257360309362,
"unformatted_text": 0.00007000247569521889
},
"field_id": 7995220,
"location_type": "exact",
"text": "31149 - FOA & SON CORPORATION"
},
{
"label": "unformatted_summary",
"spans": [
{
"start": 14620,
"end": 14816,
"page_num": 4
}
],
"span_id": "58855:c:82569:idx:33",
"confidence": {
"address": 0.0004733825335279107,
"category": 0.0006180775235407054,
"date": 0.0008151720394380391,
"email": 0.005458459723740816,
"person_name": 0.002284569200128317,
"phone": 0.0004272142832633108,
"price": 0.0018284120596945286,
"unformatted_summary": 0.9373197555541992,
"unformatted_text": 0.013383785262703896
},
"field_id": 7995214,
"location_type": "exact",
"text": "The information contained in this report is proprietary to The Cincinnati Insurance Company and its subsidiaries and\naffiliates. Unauthorized redisclosure or use of this information is prohibited."
}
]
},
"components": {}
}
},
{
"submissionfile_id": 58856,
"etl_output": "indico-file:///storage/submission/20869/39855/58856/etl_output.json",
"input_filename": "Attachment.pdf",
"input_filepath": "indico-file:///storage/submission/20869/39855/58856.pdf",
"input_filesize": 28435,
"model_results": {
"ORIGINAL": {
"18584": [],
"18585": [
{
"label": "date",
"spans": [
{
"start": 80,
"end": 98,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:0",
"confidence": {
"address": 0.00010273349471390247,
"category": 0.0002651139220688492,
"date": 0.8614617586135864,
"email": 0.00006822757131885737,
"person_name": 9.009791028802283e-6,
"phone": 0.000012027232514810748,
"price": 0.00003991029370808974,
"unformatted_summary": 0.00014650165394414216,
"unformatted_text": 7.423347597068641e-6
},
"field_id": null,
"location_type": "exact",
"text": "September 19, 2022"
},
{
"label": "date",
"spans": [
{
"start": 101,
"end": 103,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:1",
"confidence": {
"address": 0.0009921790333464742,
"category": 0.01571282558143139,
"date": 0.526358425617218,
"email": 0.0005309617263264954,
"person_name": 0.00020524818683043122,
"phone": 0.0014438320649787784,
"price": 0.002153931185603142,
"unformatted_summary": 0.009544281288981438,
"unformatted_text": 0.0005364504759199917
},
"field_id": null,
"location_type": "exact",
"text": "of"
},
{
"label": "date",
"spans": [
{
"start": 166,
"end": 168,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:5",
"confidence": {
"address": 0.0006257966160774231,
"category": 0.00004901318970951252,
"date": 0.4118210971355438,
"email": 0.00009836486424319446,
"person_name": 0.00003256821946706623,
"phone": 0.00001123331458074972,
"price": 0.00009035287075676024,
"unformatted_summary": 0.00012573764252010733,
"unformatted_text": 0.000023261965907295235
},
"field_id": null,
"location_type": "exact",
"text": "PK"
},
{
"label": "date",
"spans": [
{
"start": 170,
"end": 172,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:6",
"confidence": {
"address": 0.0010558319045230746,
"category": 0.00005799111022497527,
"date": 0.44282642006874084,
"email": 0.0001218824545503594,
"person_name": 0.00005007238723919727,
"phone": 0.00001286200676986482,
"price": 0.0001104616530938074,
"unformatted_summary": 0.00015710310253780335,
"unformatted_text": 0.00002606694761198014
},
"field_id": null,
"location_type": "exact",
"text": "06"
},
{
"label": "date",
"spans": [
{
"start": 176,
"end": 186,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:7",
"confidence": {
"address": 0.000695563096087426,
"category": 0.00008635675476398319,
"date": 0.8517894744873047,
"email": 0.00012712435272987932,
"person_name": 0.00005018798401579261,
"phone": 0.00001022862852551043,
"price": 0.00010281280992785469,
"unformatted_summary": 0.00026124875876121223,
"unformatted_text": 0.00003557210584403947
},
"field_id": null,
"location_type": "exact",
"text": "01/31/2017"
},
{
"label": "date",
"spans": [
{
"start": 189,
"end": 199,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:8",
"confidence": {
"address": 0.0008207778446376324,
"category": 0.00012111172691220418,
"date": 0.8672336935997009,
"email": 0.00014659120643045753,
"person_name": 0.000059455825976328924,
"phone": 0.000017640333680901676,
"price": 0.00011194124090252444,
"unformatted_summary": 0.00029531039763242006,
"unformatted_text": 0.000056129429140128195
},
"field_id": null,
"location_type": "exact",
"text": "01/31/2018"
},
{
"label": "date",
"spans": [
{
"start": 2165,
"end": 2172,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:9",
"confidence": {
"address": 0.00003363778523635119,
"category": 5.402139777288539e-6,
"date": 0.9924179911613464,
"email": 0.000038556459912797436,
"person_name": 0.000020999335902160965,
"phone": 4.706767413154012e-6,
"price": 0.00002088324799842667,
"unformatted_summary": 0.00006846903852419928,
"unformatted_text": 0.000018770220776787028
},
"field_id": null,
"location_type": "exact",
"text": "20/2018"
},
{
"label": "date",
"spans": [
{
"start": 2252,
"end": 2270,
"page_num": 1
}
],
"span_id": "58856:c:82569:idx:10",
"confidence": {
"address": 0.0003651609004009515,
"category": 0.00007801339233992621,
"date": 0.9923253655433655,
"email": 0.0001217594399349764,
"person_name": 0.00003231161099392921,
"phone": 0.00001398674248775933,
"price": 0.000044184038415551186,
"unformatted_summary": 0.0003084270574618131,
"unformatted_text": 0.00003457024649833329
},
"field_id": null,
"location_type": "exact",
"text": "September 19, 2022"
},
{
"label": "date",
"spans": [
{
"start": 4355,
"end": 4373,
"page_num": 2
}
],
"span_id": "58856:c:82569:idx:11",
"confidence": {
"address": 0.000017133541405200958,
"category": 0.00007301786536118016,
"date": 0.9822379350662231,
"email": 0.00002946135646197945,
"person_name": 6.080779257899849e-6,
"phone": 5.825243079016218e-6,
"price": 7.836131771910004e-6,
"unformatted_summary": 0.00014391211152542382,
"unformatted_text": 7.994573024916463e-6
},
"field_id": null,
"location_type": "exact",
"text": "September 19, 2022"
}
]
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"18584": [
{
"label": "date",
"spans": [
{
"start": 80,
"end": 89,
"page_num": 0
}
],
"span_id": "58856:c:82567:idx:0",
"confidence": {
"address": 0.0010213929926976562,
"category": 0.002604480367153883,
"date": 0.7543166279792786,
"email": 0.000322220497764647,
"person_name": 0.00007352352986345068,
"phone": 0.00018850101332645863,
"price": 0.0004167553852312267,
"unformatted_summary": 0.0025801928713917732,
"unformatted_text": 0.00011831062147393823
},
"field_id": 7995216,
"location_type": "exact",
"text": "September",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 1,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 92,
"end": 98,
"page_num": 0
}
],
"span_id": "58856:c:82567:idx:1",
"confidence": {
"address": 0.0009595331503078341,
"category": 0.001471641706302762,
"date": 0.5998096466064453,
"email": 0.0005091247148811817,
"person_name": 0.00003988957905676216,
"phone": 0.00004971478119841777,
"price": 0.00022506495588459074,
"unformatted_summary": 0.0024258671328425407,
"unformatted_text": 0.00002519020563340746
},
"field_id": 7995216,
"location_type": "exact",
"text": ", 2022",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 1,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 115,
"end": 117,
"page_num": 0
}
],
"span_id": "58856:c:82567:idx:2",
"confidence": {
"address": 0.18681220710277557,
"category": 0.03749501332640648,
"date": 0.281639039516449,
"email": 0.010449550114572048,
"person_name": 0.005461173132061958,
"phone": 0.00308586610481143,
"price": 0.08792663365602493,
"unformatted_summary": 0.025166815146803856,
"unformatted_text": 0.0003650950384326279
},
"field_id": 7995216,
"location_type": "exact",
"text": "80",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 2,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "address",
"spans": [
{
"start": 124,
"end": 155,
"page_num": 0
}
],
"span_id": "58856:c:82567:idx:3",
"confidence": {
"address": 0.7143533229827881,
"category": 0.03621963411569595,
"date": 0.009866430424153805,
"email": 0.009466133080422878,
"person_name": 0.010882952250540257,
"phone": 0.0009848978370428085,
"price": 0.0190067607909441,
"unformatted_summary": 0.012678454630076885,
"unformatted_text": 0.00029618345433846116
},
"field_id": 7995220,
"location_type": "exact",
"text": "Atlantic Development Group, LLC",
"groupings": []
},
{
"label": "date",
"spans": [
{
"start": 176,
"end": 179,
"page_num": 0
}
],
"span_id": "58856:c:82567:idx:4",
"confidence": {
"address": 0.0012793811038136482,
"category": 0.00032332626869902015,
"date": 0.6517302989959717,
"email": 0.00034350657369941473,
"person_name": 0.00006760723044862971,
"phone": 0.00002791515362332575,
"price": 0.0002369358262512833,
"unformatted_summary": 0.0011178296990692616,
"unformatted_text": 0.00008409300062339753
},
"field_id": 7995216,
"location_type": "exact",
"text": "01/",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 3,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 181,
"end": 182,
"page_num": 0
}
],
"span_id": "58856:c:82567:idx:5",
"confidence": {
"address": 0.0010210478212684393,
"category": 0.00021927256602793932,
"date": 0.6614280343055725,
"email": 0.0003836276300717145,
"person_name": 0.00008346048707608134,
"phone": 0.00001958906250365544,
"price": 0.00020117899111937732,
"unformatted_summary": 0.000813280523288995,
"unformatted_text": 0.000041275608964497223
},
"field_id": 7995216,
"location_type": "exact",
"text": "/",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 3,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 191,
"end": 192,
"page_num": 0
}
],
"span_id": "58856:c:82567:idx:6",
"confidence": {
"address": 0.0009985717479139566,
"category": 0.00019216931832488626,
"date": 0.5904198288917542,
"email": 0.00030823113047517836,
"person_name": 0.00005057598536950536,
"phone": 0.000022081529095885344,
"price": 0.00015897398407105356,
"unformatted_summary": 0.0007730506476946175,
"unformatted_text": 0.00004701557190855965
},
"field_id": 7995216,
"location_type": "exact",
"text": "/",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 3,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 194,
"end": 195,
"page_num": 0
}
],
"span_id": "58856:c:82567:idx:7",
"confidence": {
"address": 0.0008950873743742704,
"category": 0.0002793575986288488,
"date": 0.6874333024024963,
"email": 0.00019034260185435414,
"person_name": 0.00009031296940520406,
"phone": 0.00004039785926579498,
"price": 0.0002459610695950687,
"unformatted_summary": 0.0009079628507606685,
"unformatted_text": 0.00006671873416053131
},
"field_id": 7995216,
"location_type": "exact",
"text": "/",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 3,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 2167,
"end": 2168,
"page_num": 0
}
],
"span_id": "58856:c:82567:idx:8",
"confidence": {
"address": 0.0001455375022487715,
"category": 0.00010802646283991635,
"date": 0.400907039642334,
"email": 0.00018331254250369966,
"person_name": 0.00011516567610669881,
"phone": 0.00003945101343560964,
"price": 0.00040977695607580245,
"unformatted_summary": 0.0007975866901688278,
"unformatted_text": 0.00006280442175921053
},
"field_id": 7995216,
"location_type": "exact",
"text": "/",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 4,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 2264,
"end": 2265,
"page_num": 1
}
],
"span_id": "58856:c:82567:idx:9",
"confidence": {
"address": 0.006544587202370167,
"category": 0.0020903078839182854,
"date": 0.3600918650627136,
"email": 0.0014029381563887,
"person_name": 0.00033130045630969107,
"phone": 0.00031414791010320187,
"price": 0.0013108387356624007,
"unformatted_summary": 0.0049111018888652325,
"unformatted_text": 0.000306964386254549
},
"field_id": 7995216,
"location_type": "exact",
"text": ",",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 5,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 4355,
"end": 4373,
"page_num": 2
}
],
"span_id": "58856:c:82567:idx:10",
"confidence": {
"address": 0.0006006881594657898,
"category": 0.000737043796107173,
"date": 0.9675356149673462,
"email": 0.000756658730097115,
"person_name": 0.00003653747262433171,
"phone": 0.00001304465149587486,
"price": 0.00011844476102851331,
"unformatted_summary": 0.0010187411680817604,
"unformatted_text": 0.000028539107006508857
},
"field_id": 7995216,
"location_type": "exact",
"text": "September 19, 2022",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 6,
"group_id": "18584:Linked Label Group 1"
}
]
},
{
"label": "date",
"spans": [
{
"start": 4725,
"end": 4727,
"page_num": 2
}
],
"span_id": "58856:c:82567:idx:11",
"confidence": {
"address": 0.0012213828740641475,
"category": 0.000026088289814651944,
"date": 0.3501529097557068,
"email": 0.00015421409625560045,
"person_name": 0.00006212206790223718,
"phone": 0.000056992488680407405,
"price": 0.0007415751460939646,
"unformatted_summary": 0.00036064363666810095,
"unformatted_text": 0.00008148365304805338
},
"field_id": 7995216,
"location_type": "exact",
"text": "07",
"groupings": [
{
"group_name": "Linked Label Group 1",
"group_index": 7,
"group_id": "18584:Linked Label Group 1"
}
]
}
],
"18585": [
{
"label": "address",
"spans": [
{
"start": 115,
"end": 117,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:2",
"confidence": {
"address": 0.2678660750389099,
"category": 0.023485297337174416,
"date": 0.12235765159130096,
"email": 0.017217379063367844,
"person_name": 0.003910202067345381,
"phone": 0.0020522477570921183,
"price": 0.01438214536756277,
"unformatted_summary": 0.006452540867030621,
"unformatted_text": 0.0002465539437253028
},
"field_id": 7995220,
"location_type": "exact",
"text": "80"
},
{
"label": "address",
"spans": [
{
"start": 133,
"end": 144,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:3",
"confidence": {
"address": 0.46544432640075684,
"category": 0.03366115316748619,
"date": 0.018304046243429184,
"email": 0.00688895070925355,
"person_name": 0.011872564442455769,
"phone": 0.001295343623496592,
"price": 0.022745715454220772,
"unformatted_summary": 0.006623623892664909,
"unformatted_text": 0.0014356538886204362
},
"field_id": 7995220,
"location_type": "exact",
"text": "Development"
},
{
"label": "address",
"spans": [
{
"start": 150,
"end": 155,
"page_num": 0
}
],
"span_id": "58856:c:82569:idx:4",
"confidence": {
"address": 0.43541020154953003,
"category": 0.027902375906705856,
"date": 0.009404386393725872,
"email": 0.01457432471215725,
"person_name": 0.013532185927033424,
"phone": 0.0017014510231092572,
"price": 0.020853189751505852,
"unformatted_summary": 0.008631937205791473,
"unformatted_text": 0.0009548370144329965
},
"field_id": 7995220,
"location_type": "exact",
"text": ", LLC"
}
]
},
"components": {}
}
}
],
"reviews": {},
"errored_files": {}
}Other JSON Output Styles
Linked Labels
Your JSON output document may look slightly different if your model is downstream from a linked labels transformer in a workflow. The results document will continue to follow the standard format with the addition of a groupings key. In the groupings dictionary, your linked labels groups will be identified by their index. Each instance of a group has a unique index, so labels that share an index are in the same label group.
If a prediction went through the transformer but was determined not to be part of any groups, it will contain an empty groupings dictionary (i.e., "groupings": [])
{
"submission_id": 9,
"etl_output": "indico-file:///storage/submission/ocr_output.json",
"errors": [],
"results": {
"document": {
"results": {
"Invoices Extraction": [
{
"start": 115,
"end": 126,
"label": "Invoice Number",
"text": "10000023222",
"confidence": {
"Line Item Description": 4.491627958458366e-9,
"Total": 1.0310143494507429e-7,
"Vendor": 3.994096786641421e-8,
"<PAD>": 3.4748592270261724e-7,
"Invoice Number": 0.9999995231628418,
"Line Item Value": 1.2659886472476956e-8
},
"groupings": []
},
{
"start": 321,
"end": 340,
"label": "Line Item Description",
"text": "Hospitalization Level 2",
"confidence": {
"Invoice Number": 4.491627958458366e-9,
"Total": 1.0310143494507429e-7,
"Vendor": 3.994096786641421e-8,
"<PAD>": 3.4748592270261724e-7,
"Line Item Description": 0.9999995231628418,
"Line Item Value": 1.2659886472476956e-8
},
"groupings": [
{
"group_name": "Line Item",
"group_index": 1
}
]
},
{
"start": 351,
"end": 359,
"label": "Line Item Value",
"text": "350.00",
"confidence": {
"Line Item Value": 0.9999995231628418,
"Total": 1.0310143494507429e-7,
"Vendor": 3.994096786641421e-8,
"<PAD>": 3.4748592270261724e-7,
"Invoice Number": 1.0310143494507429e-7,
"Line Item Description": 1.2659886472476956e-8
},
"groupings": [
{
"group_name": "Line Item",
"group_index": 1
}
]
},
...
]
}
}
}
}{
"file_version": 3,
"submission_id": 23111,
"modelgroup_metadata": {
"9111": {
"id": 9111,
"task_type": "classification_unbundling",
"name": "multi_models_classify_unbundle",
"selected_model": {
"id": 11111,
"model_type": "unbundle"
}
},
"9112": {
"id": 9112,
"task_type": "classification",
"name": "multi_models_classification_model",
"selected_model": {
"id": 11112,
"model_type": "tfidf_gbt"
}
},
"9113": {
"id": 9113,
"task_type": "annotation",
"name": "multi_models_extraction_model",
"selected_model": {
"id": 11114,
"model_type": "finetune"
}
}
},
"submission_results": [
{
"submissionfile_id": 21111,
"etl_output": "indico-file:///storage/submission/11599/23532/2111/etl_output.json",
"input_filename": "MultiClass.pdf",
"input_filepath": "indico-file:///storage/submission/11599/23111/24607.pdf",
"input_filesize": 15103,
"model_results": {
"ORIGINAL": {
"9111": [
{
"label": "financial disclosures",
"spans": [
{
"start": 0,
"end": 31,
"page_num": 0
}
],
"span_id": "24607:c:47034:idx:0",
"confidence": {
"annual report": 0.01469539012759924,
"avg annual report": 0.005166168324649334,
"financial disclosures": 0.9801384210586548
},
"field_id": 6403711
},
{
"label": "financial disclosures",
"spans": [
{
"start": 32,
"end": 89,
"page_num": 1
}
],
"span_id": "24607:c:47034:idx:1",
"confidence": {
"annual report": 0.011918464675545692,
"avg annual report": 0.004315620753914118,
"financial disclosures": 0.9837659001350403
},
"9113": []
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"9111": [],
"9112": [],
"9113": []
},
"components": {}
}
}
],
"reviews": {}
}Forms Output
Output from an Forms model contains a recognized_forms key for the model, which details all the forms recognized in the output file, and a orm_version key for each prediction.
{
"file_version": 1,
"submission_id": 11111,
"etl_output": "indico-file:///storage/submission/13708/11111/1111/etl_output.json",
"results": {
"document": {
"results": {
"ACORD Model": [
{
"start": null,
"end": null,
"label": "Agency",
"confidence": {
"Agency": 1.0
},
"field_id": 6801111,
"top": 219,
"bottom": 530,
"left": 63,
"right": 1286,
"page_num": 0,
"type": "text",
"text": "My Insurance Group \n1234 Main St. \nBoston, MA 02111",
"normalized": {
"text": "Mediocre Insurance Group \n1234 Main St. \nBoston, MA 02111",
"start": null,
"end": null,
"structured": null,
"formatted": "Mediocre Insurance Group \n1234 Main St. \nBoston, MA 02111",
"status": "SUCCESS",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},{
"file_version": 3,
"submission_id": 19111,
{
"processed_file_name": "indico-blob:///storage/submission/0000/6803/0000.pdf",
"recognized_forms": {
"Acord-125-2016-03": [
0
]
},
"etl_output_url": "indico-blob:///storage/submission/2851/6803/0000/etl_output.json"
}
],
"pages": [
{
"template_name": "299485",
"template_page_number": 0,
"match_confidence": 0.98,
"zones": [
{
"top": 119,
"bottom": 231,
"left": 2101,
"right": 2485,
"page_num": 0,
"type": "text",
"text": "",
"label": "Date",
"confidence": 100,
"form_version": "Acord-125-2016-03",
"value": ""
},
{
"top": 219,
"bottom": 530,
"left": 63,
"right": 1286,
"page_num": 0,
"type": "text",
"text": "Mediocre Insurance Group \n1234 Main St. \nBoston, MA 02111",
"label": "Agency",
"confidence": 100,
"form_version": "Acord-125-2016-03",
"value": "Mediocre Insurance Group \n1234 Main St. \nBoston, MA 02111"
},
{
"top": 219,
"bottom": 331,
"left": 1262,
"right": 2275,
"page_num": 0,
"type": "text",
"text": "Anonymouse Insurance",
"label": "Carrier",
"confidence": 100,
"form_version": "Acord-125-2016-03",
"value": "Anonymouse Insurance"
},
{
"top": 219,
"bottom": 331,
"left": 2251,
"right": 2485,
"page_num": 0,
"type": "text",
"text": "",
"label": "NAICCodePg1",
"confidence": 100,
"form_version": "Acord-125-2016-03",
"value": ""
},
{
"top": 325,
"bottom": 431,
"left": 1262,
"right": 2200,
"page_num": 0,
"type": "text",
"text": "",
"label": "PolicyProgramName",
"confidence": 100,
"form_version": "Acord-125-2016-03",
"value": ""
},
{
"top": 319,
"bottom": 431,
"left": 2176,
"right": 2485,
"page_num": 0,
"type": "text",
"text": "",
"label": "CompanyProductCode",
"confidence": 100,
"form_version": "Acord-125-2016-03",
"value": ""
},
{
"top": 419,
"bottom": 531,
"left": 1262,
"right": 2485,
"page_num": 0,
"type": "text",
"text": "0123456789",
"label": "PolicyNumber",
"confidence": 100,
"form_version": "Acord-125-2016-03",
"value": "0123456789"
},Normalization/Typed Answer Keys
If you have used Typed Answer Keys (TAK) to normalize your output, that normalization will appear in your output file. A normalized or formatted section will be included in your document, which details the normalization expectation, whether or not it was successful, and the original format of the text.
A Note on Normalization with Autoreview
Autoreview users who have normalized their results will need to modify their autoreview scripts and their integration with downstream systems. Downstream systems and autoreview scripts should be updated to use the normalized values as the final value rather than the original text.
To update autoreview scripts: Change
prediction["text"]toprediction["normalized"]["formatted"]in autoreview and post-processing code.
{
"file_version": 1,
"submission_id": 91111,
"etl_output": "indico-file:///storage/submission/3106/93449/1111/etl_output.json",
"results": {
"document": {
"results": {
"Test Workflow": [
{
"start": 410,
"end": 432,
"label": "Income Amount",
"confidence": {
"Asset Value": 0.001380413887090981,
"Date of Appointment": 3.0055036859266693e-7,
"Department": 3.4668929060899245e-7,
"Income Amount": 0.7819252610206604,
"Liability Amount": 8.27995336294407e-6,
"Liability Type": 1.7472679019192583e-6,
"Name": 1.465798504796112e-6,
"Position": 7.679560098949878e-7,
"Previous Organization": 1.8361643014941365e-6,
"Previous Position": 1.587482643117255e-6
},
"field_id": 91111,
"page_num": 0,
"text": "00 6,575.91 6,575.91 0",
"normalized": {
"text": "00 6,575.91 6,575.91 0",
"start": 410,
"end": 412,
"structured": {
"currency": null,
"amount": 0.0,
"currency_symbol": null
},
"formatted": "$0.00",
"status": "SUCCESS",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"start": 433,
"end": 436,
"label": "Income Amount",
"confidence": {
"Asset Value": 0.010080317035317421,
"Date of Appointment": 5.33476793407317e-7,
"Department": 5.270041469884745e-7,
"Income Amount": 0.6256295442581177,
"Liability Amount": 0.000012726128261419944,
"Liability Type": 5.120524292578921e-6,
"Name": 5.42804627912119e-7,
"Position": 7.942233537505672e-7,
"Previous Organization": 4.114456714887638e-6,
"Previous Position": 6.950397164473543e-6
},
"field_id": 91111,
"page_num": 0,
"text": "000",
"normalized": {
"text": "000",
"start": 433,
"end": 436,
"structured": {
"currency": null,
"amount": 0.0,
"currency_symbol": null
},
"formatted": "$0.00",
"status": "SUCCESS",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},{
"file_version": 3,
"submission_id": 25542,
"modelgroup_metadata": {
"12842": {
"id": 12842,
"task_type": "annotation",
"name": "invoices",
"selected_model": {
"id": 18969,
"model_type": "finetune"
}
}
},
"submission_results": [
{
"submissionfile_id": 26781,
"etl_output": "indico-file:///storage/submission/10000/2000/20001/etl_output.json",
"input_filename": "amazonaws.pdf",
"input_filepath": "indico-file:///storage/submission/15200/25542/26781.pdf",
"input_filesize": 105501,
"model_results": {
"ORIGINAL": {
"12842": [
{
"label": "vendor",
"spans": [
{
"start": 29,
"end": 54,
"page_num": 0
}
],
"span_id": "26781:c:62510:idx:0",
"confidence": {
"invoice": 0.00000904287207958987,
"vendor": 0.9999739527702332
},
"field_id": 7220809,
"text": "Amazon Web Services, Inc.",
"normalized": {
"text": "Amazon Web Services, Inc.",
"start": 29,
"end": 54,
"structured": null,
"formatted": "Amazon Web Services, Inc.",
"status": "SUCCESS",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "invoice",
"spans": [
{
"start": 164,
"end": 173,
"page_num": 0
}
],
"span_id": "26781:c:62510:idx:1",
"confidence": {
"invoice": 0.9999997615814209,
"vendor": 5.3698755664299824e-8
},
"field_id": 7220808,
"text": "234983902",
"normalized": {
"text": "234983902",
"start": 164,
"end": 173,
"structured": null,
"formatted": "234983902",
"status": "SUCCESS",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
}
]
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"12842": []
},
"components": {}
}
},
],
"reviews": {}
}Output with Review/Autoreview
Raw result files remain unaltered to guarantee that all reviewers can access and evaluate the original file consistently. Results that undergo review closely resemble standard results but include additional nested sections: pre-review, final, post-review, and reviews_meta for each model group. Confidence levels are not provided for results that incorporate reviewer corrections.
See the comments for in-context code explanation.
A note on normalization with autoreview
Autoreview users who have normalized their results will need to modify their autoreview scripts and their integration with downstream systems. Downstream systems and autoreview scripts should be updated to use the normalized values as the final value rather than the original text.
To update autoreview scripts: Change
prediction["text"]toprediction["normalized"]["formatted"]in autoreview and post-processing code or setprediction["normalized"]["formatted"]in addition toprediction["text"]in autoreview alone.
{
"submission_id": 23,
"etl_output": "foo_etl-output.json",
"errors": [],
"results": {
"document": {
"results": {
"bar": {
"pre_review": [
{
"etl": "Lorem Ipsum"
}
],
"post_reviews": [
[
{
"etl": "dolor sit amet"
}
],
[
{
"etl": "consectetur adipiscing elit"
}
]
],
"final": [
{
"etl": "consectetur adipiscing elit"
}
]
}
}
}
},
"reviews_meta": [
{
"review_id": 2,
"reviewer_id": 2,
"review_notes": "Fooey",
"review_rejected": false,
"review_type": "manual"
},
{
"review_id": 1,
"reviewer_id": 1,
"review_notes": null,
"review_rejected": false,
"review_type": "manual"
}
],
"file_version": 1,
"review_id": 1,
"reviewer_id": 1,
"review_notes": null,
"review_rejected": false,
"review_type": "manual"
}{
"file_version": 3,
"submission_id": 21111,
"modelgroup_metadata": {
"12111": {
"id": 12111,
"task_type": "annotation",
"name": "invoices",
"selected_model": {
"id": 18111,
"model_type": "finetune"
}
}
},
"submission_results": [
{
"submissionfile_id": 26111,
"etl_output": "indico-file:///storage/submission/10000/2000/20001/etl_output.json",
"input_filename": "amazonaws.pdf",
"input_filepath": "indico-file:///storage/submission/15200/25542/1111.pdf",
"input_filesize": 105501,
"model_results": {
"ORIGINAL": {
"11111": [
{
"label": "vendor",
"spans": [
{
"start": 29,
"end": 54,
"page_num": 0
}
],
"span_id": "26781:c:62510:idx:0",
"confidence": {
"invoice": 0.00000904287207958987,
"vendor": 0.9999739527702332
},
"field_id": 7220809,
"text": "Amazon Web Services, Inc.",
# Only for models with normalized output
"normalized": {
"text": "Amazon Web Services, Inc.",
"start": 29,
"end": 54,
"structured": null,
"formatted": "Amazon Web Services, Inc.",
"status": "SUCCESS",
"validation": [
{
"validation_type": "TYPE_CONVERSION",
"error_message": null,
"validation_status": "SUCCESS"
}
]
}
},
{
"label": "invoice",
"spans": [
{
"start": 164,
"end": 173,
"page_num": 0
}
],
}
]
}
},
"component_results": {
"ORIGINAL": {}
},
"rejected": {
"models": {
"12842": []
},
"components": {}
}
},
],
"reviews": {}
}Output with Summarization Enabled
- Summarization (Version 1): In version 1, the output with summaries contains similar dictionary outputs to single classification models with the addition of both summary text and citation data contained in the
textkey, where each model’s output is structured as a dictionary rather than an array. - Summarization (Version 3): In version 3, the output is structured as an array with one entry per file in the submission. Each entry includes the summary text and citation data, which point back to segments in the source document.
Citation formatting
The citation's included in your output have two ranges:
- One that points to the text in the source document
- And another that links to the text in the generated summary.
Each citation corresponds to a specific segment of the generated summary. For instance, "[1-2]" indicates that a section of the summary is based on two different parts of the source document. These citations replace full phrases or sentences in the summary text and are indicated by numbers such as "[0]" or similar.
"summary_model": {
"field_id": 162,
"confidence": {
"foo": 1.0
},
"label": "foo",
"text": "• This document is a Restrictive Covenant and Confidentiality Agreement between Federal Home Loan Mortgage Corporation (Freddie Mac) and Donald J. Bisenius, effective from 11th March 2001 [0].\n• The agreement states that upon termination of employment with Freddie Mac, all materials embodying Confidential Information must be returned to the company [1-2]. \n• Confidential Information consists of various types of proprietary or confidential information relating to Freddie Mac's business, products, customers, and third parties [4][6]. \n• The agreement also contains a non-competition clause, which prevents the executive from seeking or accepting employment with any competitor of Freddie Mac for twelve months after termination of employment with Freddie Mac [12-13]. \n• Furthermore, the executive is prohibited from soliciting any Freddie Mac managerial employee for a period of twelve months after the termination date [23].\n• In exchange for agreeing to be employed by Freddie Mac under the conditions of this agreement, Freddie Mac will provide the executive with a twelve-month severance and a long-term incentive grant [31][36][39]. \n• The agreement is governed by the laws of the Commonwealth of Virginia [7]. \n• The executive acknowledges that breaching this agreement could result in discipline, including termination of employment [38][42].",
"citations": [
{
"document": {
"start": 0,
"end": 394,
"page_num": 0
},
"response": {
"start": 188,
"end": 191
}
},
...
]
}
},"model_results": {
"ORIGINAL": {
"160": [
{
"field_id": 160,
"confidence": {
"foo": 1.0
},
"label": "foo",
"text": "• The document discusses three national parks in the United States: Dry Tortugas in Florida, Denali in Alaska, and Gates of the Arctic also in Alaska. \n• Dry Tortugas, established on October 26, 1992, is located at the westernmost end of the Florida Keys and is home to Fort Jefferson, the largest masonry structure in the Western Hemisphere. The park features undisturbed coral reefs and shipwrecks and is only accessible by plane or boat [0][4].\n• Denali, established on February 26, 1917, is centered around Denali, the tallest mountain in North America. The park is home to various wildlife species including grizzly bears, Dall sheep, Porcupine caribou, and wolves [1].\n• Gates of the Arctic, established on December 2, 1980, is the northernmost park in the country, located in Alaska's Brooks Range. The park does not have any facilities and has been home to Alaska Natives for 11,000 years [6].",
"citations": [
{
"document": {
"start": 16739,
"end": 17085,
"page_num": 6
},
"response": {
"start": 440,
"end": 443
}
},
...
],
"ctx_id": "75:c:489:idx:1"
},
{
"field_id": 160,
"confidence": {
"foo": 1.0
},
"label": "foo",
"text": "• The Gateway Arch, located in Missouri, is a 630-foot catenary arch built to commemorate the Lewis and Clark Expedition and the subsequent westward expansion of the country. It's located near the old courthouse, the first site of the Dred Scott case about slavery[0-1].\n• Waterton-Glacier International Peace Park, located in Montana, includes 26 glaciers and 130 named lakes surrounded by Rocky Mountain peaks, and it's home to historic hotels and the landmark Going-to-the-Sun Road[2-3].\n• Glacier Bay, situated in Alaska, contains tidewater glaciers, mountains, fjords, a temperate rainforest, and is home to a large population of grizzly bears, mountain goats, whales, seals, and eagles[4-5].\n• The Grand Canyon, located in Arizona, is a large canyon carved by the Colorado River. It's 277 miles long, up to 1 mile deep, and up to 15 miles wide. The erosion over millions of years has exposed the multicolored layers of the Colorado Plateau in mesas and canyon walls[6-7].",
"citations": [
{
"document": {
"start": 17757,
"end": 18405,
"page_num": 7
},
"response": {
"start": 264,
"end": 269
}
},
...
],
"ctx_id": "75:c:489:idx:2"
},
...
],Updated 4 days ago
