Skip to content

Instantly share code, notes, and snippets.

@dannguyen
Last active October 30, 2023 05:49
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save dannguyen/1a71c8fb98ddd1df6abdc08bc746397a to your computer and use it in GitHub Desktop.
Save dannguyen/1a71c8fb98ddd1df6abdc08bc746397a to your computer and use it in GitHub Desktop.
A gist of AWS Textract sample/demo data for easy reference and preview, in case you're curious how well Amazon does when it comes to pdf-to-csv

AWS Textract -- sample document image and data from the offical demo

AWS Textract is now out of closed beta. You can read the features page here, and you can also read about its limits here (e.g. no handwriting). Basically, if you've ever had to deal with the hell of getting structured data out of a PDF (scanned image or not), Textract is aiming for your business:

image

This short gist contains some of my brief observations about Textract and its demo, as well as direct links to the most relevant and important files, such as the Textract demo sample image and the resulting data files from Textract's API. If you have an AWS account, I highly recommend trying the interactive demo for yourself, because it's easy and because you can upload and test a document/image of your own choosing. Here's the URL for the Textract demo:

https://console.aws.amazon.com/textract/home?region=us-east-1#/demo

Note: I did try Textract on a real-world PDF and it...did not do very well. I might write up some details if I have time to do more testing. The PDF was a page from the FBI's National Instant Criminal Background Check System (NICS). I got the idea and the pdf sample from Jeremy Singer-Vine's excellent pdfplumber repo, which includes -- among many useful resources -- a Jupyter notebook showing how to use his pdfplumber library to extract tabular data from the FBI PDF.

However, if you're only casually curious about Textract and prefer to read a short writeup/screenshots of the demo and its data files, then read on:

The Textract demo's sample input

The Textract demo page conveniently provides a preloaded sample file; here's a screenshot of what the demo page looks like on first visit:

img

On the left side is an image of the sample file for Textract do process. On the right side is a preview of Textract's analysis (not sure if the results are canned, given that the sample image is canned). In the screenshot above, the preview shows the "Raw text" -- i.e. the exact text strings extracted by Textract's OCR from the sample image.

Textract accepts files in JPEG, PNG, or PDF format. The sample file (seen in the left panel of the demo) is not a PDF file, but an image in PNG format. Basically a screenshot of a Word doc/PDF. This document happens to contain a simple data table and a filled-out form. And here's the actual image as processed by the Textract demo:

https://s3.us-east-1.amazonaws.com/textract-public-assets-us-east-1/default_document.png

img

It goes without saying that Textract perfectly processes this sample file, including the OCR of the raw text, extracting the data table and its structure, and even the key-value pairs of the document's "form". The right-pane of the demo lets you quickly preview Textract's analysis. For example, clicking the Tables tab shows a friendly preview of the extracted tabular data:

image

So Textract demo's perfect results aren't interesting. However, the data format and details of Textract's resulting analysis are interesting, so I've attached them to this gist. If you click the Download Results button on the Textract demo site, it sends you a zipped file of the 4 raw data files; I've uploaded a copy of that results zip file to Github and you can download it via this url

The raw data files produced by the Textract API

But to save you the time of downloading and opening that (admittedly boring) zipfile, I've also attached each of its 4 data files to this gist, so you can view the contents on this same webpage:

(click the filename to jump to the respective file as attached to the gist)

  • apiResponse.json: the granular JSON data from Textract's API, which includes a confidence value and bounding-box coordinates for every detected object, including words, lines, and cells.
  • keyValues.csv: the list of detected form fields and values -- e.g. "Full Name: " and "Jane Doe " -- as a simple CSV
  • rawText.txt: a simple stream of every text string detected by Textract's OCR.
  • tables.csv: the tabular row/column data as detected by Textract's algorithm.

Is Textract Our Saint and Savior of pdf-to-csv data?

For the folks hoping Textract is the solution to their pdf-to-csv problems, I suspect the tables.csv will be the most exciting thing. However, like I mentioned at the top of this gist, the only other document I tried with Textract was an annoying and complicated example courtesy of the PDF. I regret to say that Textract failed, and it failed in unexpected and hard-to-mitigate ways. And it's worth noting that ABBYY FineReader for MacOS seems to do a near-perfect job of extraction.

This is not a death sentence for Textract -- I think I can imagine what the problem is, and that it's a very fixable problem for the AWS team weeks/months down the road as they iterate on the product. If I have time later I'll do some more testing and write up the details. But if you want to know about Textract now, then all I can say that Textract, as of a few hours ago, does not seem reliable enough for the specific usecase of the FBI NICS PDF.

But I also saw plenty of promising things in my brief test of Textract. For a service that requires little bespoke programming (i.e. what you'd use jsvine's pdfplumber for) and, even with the FBI PDF, produces admirable OCR results and tabular structure (90% of the time, for now), Textract looks very promising. I haven't used the Google Cloud Vision API in awhile, so I'm not sure how it compares to that.

And I suppose the ultimate real-world test for Textract (and Google Cloud Vision) is something like the Senate financial disclosure forms, which include PDFs consisting of scanned paper forms:

I have an incomplete repo -- dannguyen/abbyy-finereader-ocr-senate where I have a writeup of the issue and examples, and the results from using ABBYY FineReader (for Mac OSX), which like Textract, offers both extraction of OCR-text and tabular-data extraction. I haven't looked at in awhile, but I believe the results were far from reliable -- which was to be expected given how hard those 2 extraction problems are. And I assume Textract will have largely the same kinds of problems...

But for document PDFs like the FBI NICS sample page.) -- i.e. "simple" PDFs that aren't images and don't need OCR -- I, and I think most data wrangling professionals, will be more than estatic if Textract and its rivals offer improved results when it comes to the seemingly mundane need for good tabular data extraction. Right now I'm OK with ABBYY FineReader and its mostly reliable PDF-to-CSV results. But a scriptable API like Textract that provides granular data for diagnosis and additional hacking/tweaking (i.e. apiResponse.json) is going to much more useful for data journalists/analysts in the long run.

Big note: This gist is already too long, so I don't have time to adequately mention the open source libraries like Tabula and Camelot, which also provide powerful and scriptable workflow for pdf-to-csv, and unlike Amazon/Google cloud, provide it for free. But later!

{
"DocumentMetadata": {
"Pages": 1
},
"Blocks": [
{
"BlockType": "PAGE",
"Geometry": {
"BoundingBox": {
"Width": 1,
"Height": 1,
"Left": 0,
"Top": 0
},
"Polygon": [
{
"X": 0,
"Y": 0
},
{
"X": 1,
"Y": 0
},
{
"X": 1,
"Y": 1
},
{
"X": 0,
"Y": 1
}
]
},
"Id": "d60f8463-1443-4953-ab8f-abc331433550",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"65b27acb-266b-4a3c-a2ef-d266c63d37a6",
"50025bd8-e5c0-47ef-b811-a66046d796e2",
"2ac9078b-b43c-42b0-9793-9ec52415adfd",
"adb8c335-2382-4327-bb47-891c229c8779",
"836cdfe3-f8c6-44a0-ab88-8c204ce56c25",
"c2f213b5-420d-46ab-abe0-1bbfa24e0a0b",
"40567ede-4fc0-4729-8d1f-4730a421b354",
"a1e999d1-d765-4bd7-be67-eba241cb905c",
"aa9f6cff-ba89-4d7d-9566-e45c9dc0a6cd",
"c89488d9-7248-4514-a7ba-c3c11d516401",
"62bdda63-b885-4e82-ad15-7ddfdfe68237",
"86315ea8-6f96-4fda-aadd-b01ca9a3fd3d",
"e170c909-0341-4ab6-8226-8312c42096b2",
"edda9042-5024-4a3e-bf77-bab275e203ea",
"0c411653-8830-4579-9553-c84de410cdac",
"ca5deaca-2b4b-4eb5-8066-d8ee63560a88",
"71f8db9f-6b87-410d-9cf6-8ed045c956e1",
"0a03c0c7-090e-4ad5-a039-f336ed888afb",
"a403e2f2-06e7-47fe-899d-37f519349c80",
"c4f2aca3-43cf-4b2e-8e6c-ecfe8a6443ec",
"1dfb1091-e65c-4dac-a817-173d4fa6d2f8",
"86d55453-6afb-4444-ae7e-290691073361",
"e4de597f-26ff-45bf-96e6-3d8c16a41bdd",
"89b94bba-7a88-4b9c-9e00-9c2912709bee",
"bab68112-8766-4af6-b75f-8c51ac4f006b",
"c56b8bf6-d7a1-4dfa-80da-f9ce68939122",
"9c39a004-05d2-40c4-a154-f118d3d896ea",
"f043ae13-d984-4a4a-8a5d-a5871e17d61a",
"25a2774d-c9ea-4360-ba11-07de8db1a885",
"be90b448-881a-408b-9d60-721e3df7155e",
"bc89f8ea-6422-4928-8ae0-a96c5d5d3367",
"3ccc1bfb-cc81-47d9-a90a-e20c17c6b35f"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.98016357421875,
"Text": "Employment Application",
"Geometry": {
"BoundingBox": {
"Width": 0.34495940804481506,
"Height": 0.04193491116166115,
"Left": 0.2688162624835968,
"Top": 0.10869424045085907
},
"Polygon": [
{
"X": 0.2688162624835968,
"Y": 0.10869424045085907
},
{
"X": 0.6137756705284119,
"Y": 0.10869424045085907
},
{
"X": 0.6137756705284119,
"Y": 0.15062914788722992
},
{
"X": 0.2688162624835968,
"Y": 0.15062914788722992
}
]
},
"Id": "65b27acb-266b-4a3c-a2ef-d266c63d37a6",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"6676cc9c-8305-44c2-8a24-96f25c2610f8",
"867336c0-5159-4f82-ba47-c1b585c3236b"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 98.91121673583984,
"Text": "Applicant Information",
"Geometry": {
"BoundingBox": {
"Width": 0.24194736778736115,
"Height": 0.03438185900449753,
"Left": 0.05472326651215553,
"Top": 0.18081974983215332
},
"Polygon": [
{
"X": 0.05472326651215553,
"Y": 0.18081974983215332
},
{
"X": 0.2966706454753876,
"Y": 0.18081974983215332
},
{
"X": 0.2966706454753876,
"Y": 0.21520160138607025
},
{
"X": 0.05472326651215553,
"Y": 0.21520160138607025
}
]
},
"Id": "50025bd8-e5c0-47ef-b811-a66046d796e2",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"8d9bc2db-e742-448c-87cc-457b295b7414",
"b6df89bd-c730-47b7-8ff7-66814bf08c79"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.92588806152344,
"Text": "Full Name: Jane Doe",
"Geometry": {
"BoundingBox": {
"Width": 0.20093347132205963,
"Height": 0.02507236786186695,
"Left": 0.05686451494693756,
"Top": 0.24320881068706512
},
"Polygon": [
{
"X": 0.05686451494693756,
"Y": 0.24320881068706512
},
{
"X": 0.2577979862689972,
"Y": 0.24320881068706512
},
{
"X": 0.2577979862689972,
"Y": 0.26828116178512573
},
{
"X": 0.05686451494693756,
"Y": 0.26828116178512573
}
]
},
"Id": "2ac9078b-b43c-42b0-9793-9ec52415adfd",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"b97d5d44-ec65-47ee-8f5f-5d7fb655859c",
"636659d7-5766-4ba8-8be3-f76b455cedff",
"903deb0d-9ec2-4a8f-a840-861ec5a259f5",
"1178463a-9455-46cb-bc51-89fba530a31c"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.9095458984375,
"Text": "Phone Number: 555-0100",
"Geometry": {
"BoundingBox": {
"Width": 0.2554837763309479,
"Height": 0.025423433631658554,
"Left": 0.056762322783470154,
"Top": 0.30236420035362244
},
"Polygon": [
{
"X": 0.056762322783470154,
"Y": 0.30236420035362244
},
{
"X": 0.3122461140155792,
"Y": 0.30236420035362244
},
{
"X": 0.3122461140155792,
"Y": 0.3277876377105713
},
{
"X": 0.056762322783470154,
"Y": 0.3277876377105713
}
]
},
"Id": "adb8c335-2382-4327-bb47-891c229c8779",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"44137f51-f5c5-4eed-8b29-39bdb033aba5",
"b3df9bf1-99be-41c1-97c4-26e4300d1a3e",
"b206a92e-c997-4027-a761-bf02e51ae80b"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 96.30188751220703,
"Text": "Home Address: 123 Any Street. Any Town, USA",
"Geometry": {
"BoundingBox": {
"Width": 0.45793843269348145,
"Height": 0.027341492474079132,
"Left": 0.056902818381786346,
"Top": 0.36211779713630676
},
"Polygon": [
{
"X": 0.056902818381786346,
"Y": 0.36211779713630676
},
{
"X": 0.5148412585258484,
"Y": 0.36211779713630676
},
{
"X": 0.5148412585258484,
"Y": 0.3894593119621277
},
{
"X": 0.056902818381786346,
"Y": 0.3894593119621277
}
]
},
"Id": "836cdfe3-f8c6-44a0-ab88-8c204ce56c25",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"c460cfa6-c214-49fb-8190-15ca0604bfff",
"13debf03-f2fb-4a0e-954c-f51d042d507b",
"6496c2db-e4d6-4c69-b8f1-2eaa57e02c03",
"e293ff66-9eef-4c81-a438-2e00d4da4ea6",
"30de27e6-e1cd-48c8-bb23-bb760d67665e",
"959b419a-160c-42bb-9465-e2a96a85bbc1",
"ba8ecd92-8c0f-4b93-b665-df611f73b73e",
"46021d5d-7305-4a1a-9f0d-5c380710cb16"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 93.26010131835938,
"Text": "Mailing Address: same as home address",
"Geometry": {
"BoundingBox": {
"Width": 0.39611709117889404,
"Height": 0.030021071434020996,
"Left": 0.05674762651324272,
"Top": 0.42043840885162354
},
"Polygon": [
{
"X": 0.05674762651324272,
"Y": 0.42043840885162354
},
{
"X": 0.45286473631858826,
"Y": 0.42043840885162354
},
{
"X": 0.45286473631858826,
"Y": 0.45045948028564453
},
{
"X": 0.05674762651324272,
"Y": 0.45045948028564453
}
]
},
"Id": "c2f213b5-420d-46ab-abe0-1bbfa24e0a0b",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"748322af-51a1-48a1-b1cd-bd15ee315d72",
"70a93a6e-558d-4a40-a706-def93b549c8a",
"09cf409f-9118-4a98-bf8d-88b0eb057de5",
"a1cc355c-23c4-4d26-bebf-296b6faa0953",
"8a8a16c7-5ac7-430d-8793-5acb6098d43f",
"8b6e9bbb-cefb-4e57-914d-f6755d97c326"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.80561065673828,
"Text": "Previous Employment History",
"Geometry": {
"BoundingBox": {
"Width": 0.3230823278427124,
"Height": 0.033050891011953354,
"Left": 0.2996804118156433,
"Top": 0.5093804001808167
},
"Polygon": [
{
"X": 0.2996804118156433,
"Y": 0.5093804001808167
},
{
"X": 0.6227627396583557,
"Y": 0.5093804001808167
},
{
"X": 0.6227627396583557,
"Y": 0.5424312949180603
},
{
"X": 0.2996804118156433,
"Y": 0.5424312949180603
}
]
},
"Id": "40567ede-4fc0-4729-8d1f-4730a421b354",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"0b653cfc-5455-4578-9b9b-c0f27a530380",
"c6fc7ab7-5a0c-4234-aaa5-7cf9c60db019",
"84802773-12d9-4b17-9938-dfc2c5a048d7"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.93317413330078,
"Text": "Start Date",
"Geometry": {
"BoundingBox": {
"Width": 0.10454680025577545,
"Height": 0.02479562908411026,
"Left": 0.058634281158447266,
"Top": 0.5635442137718201
},
"Polygon": [
{
"X": 0.058634281158447266,
"Y": 0.5635442137718201
},
{
"X": 0.16318108141422272,
"Y": 0.5635442137718201
},
{
"X": 0.16318108141422272,
"Y": 0.5883398652076721
},
{
"X": 0.058634281158447266,
"Y": 0.5883398652076721
}
]
},
"Id": "a1e999d1-d765-4bd7-be67-eba241cb905c",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"a51e26ac-30bc-4490-bf32-eab3a0bfda80",
"3896e8c5-498d-4fd5-8fa4-f46f7289b31b"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.9383544921875,
"Text": "End Date",
"Geometry": {
"BoundingBox": {
"Width": 0.09131957590579987,
"Height": 0.024199342355132103,
"Left": 0.17723050713539124,
"Top": 0.5627442598342896
},
"Polygon": [
{
"X": 0.17723050713539124,
"Y": 0.5627442598342896
},
{
"X": 0.2685500979423523,
"Y": 0.5627442598342896
},
{
"X": 0.2685500979423523,
"Y": 0.5869436264038086
},
{
"X": 0.17723050713539124,
"Y": 0.5869436264038086
}
]
},
"Id": "aa9f6cff-ba89-4d7d-9566-e45c9dc0a6cd",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"30ba3dea-ebcc-48c7-90a7-358a62324b0a",
"dff1fcaa-4ac3-46ba-9345-926a6d3eea5b"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.97537994384766,
"Text": "Employer Name",
"Geometry": {
"BoundingBox": {
"Width": 0.16304227709770203,
"Height": 0.028675684705376625,
"Left": 0.2963601052761078,
"Top": 0.5627250671386719
},
"Polygon": [
{
"X": 0.2963601052761078,
"Y": 0.5627250671386719
},
{
"X": 0.4594023823738098,
"Y": 0.5627250671386719
},
{
"X": 0.4594023823738098,
"Y": 0.5914007425308228
},
{
"X": 0.2963601052761078,
"Y": 0.5914007425308228
}
]
},
"Id": "c89488d9-7248-4514-a7ba-c3c11d516401",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"455c435e-8f96-4ab1-9bc0-c446fc81d88c",
"e7e34961-66d1-41e8-a6eb-e3658af4f4f2"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.94449615478516,
"Text": "Position Held",
"Geometry": {
"BoundingBox": {
"Width": 0.13437782227993011,
"Height": 0.025254037231206894,
"Left": 0.4912456274032593,
"Top": 0.5625089406967163
},
"Polygon": [
{
"X": 0.4912456274032593,
"Y": 0.5625089406967163
},
{
"X": 0.6256234645843506,
"Y": 0.5625089406967163
},
{
"X": 0.6256234645843506,
"Y": 0.5877630114555359
},
{
"X": 0.4912456274032593,
"Y": 0.5877630114555359
}
]
},
"Id": "62bdda63-b885-4e82-ad15-7ddfdfe68237",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"c89b4fc2-fb66-4a59-9027-39e4f71f3bf0",
"a0d2b508-1aee-485d-ad11-756ceb514a5d"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.97596740722656,
"Text": "Reason for leaving",
"Geometry": {
"BoundingBox": {
"Width": 0.18544656038284302,
"Height": 0.03021201491355896,
"Left": 0.6615156531333923,
"Top": 0.5617849826812744
},
"Polygon": [
{
"X": 0.6615156531333923,
"Y": 0.5617849826812744
},
{
"X": 0.8469621539115906,
"Y": 0.5617849826812744
},
{
"X": 0.8469621539115906,
"Y": 0.5919970273971558
},
{
"X": 0.6615156531333923,
"Y": 0.5919970273971558
}
]
},
"Id": "86315ea8-6f96-4fda-aadd-b01ca9a3fd3d",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"b57fb3a0-bea3-4fa9-acc4-a7bff1e216e1",
"78651135-03cb-4a46-b5de-940b656bf56d",
"240c587b-69fd-4f6e-88fc-2d7c09925aaa"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.7265625,
"Text": "1/15/2009",
"Geometry": {
"BoundingBox": {
"Width": 0.10728543251752853,
"Height": 0.02937249094247818,
"Left": 0.058168504387140274,
"Top": 0.610666811466217
},
"Polygon": [
{
"X": 0.058168504387140274,
"Y": 0.610666811466217
},
{
"X": 0.1654539406299591,
"Y": 0.610666811466217
},
{
"X": 0.1654539406299591,
"Y": 0.6400392651557922
},
{
"X": 0.058168504387140274,
"Y": 0.6400392651557922
}
]
},
"Id": "e170c909-0341-4ab6-8226-8312c42096b2",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"4f291f94-7035-4996-b2de-4dbfdfa1eb9e"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 97.82591247558594,
"Text": "6/30/2013",
"Geometry": {
"BoundingBox": {
"Width": 0.1048305407166481,
"Height": 0.03000839240849018,
"Left": 0.176572784781456,
"Top": 0.610440731048584
},
"Polygon": [
{
"X": 0.176572784781456,
"Y": 0.610440731048584
},
{
"X": 0.2814033329486847,
"Y": 0.610440731048584
},
{
"X": 0.2814033329486847,
"Y": 0.6404491066932678
},
{
"X": 0.176572784781456,
"Y": 0.6404491066932678
}
]
},
"Id": "edda9042-5024-4a3e-bf77-bab275e203ea",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"9ca8ef6d-8649-43e8-8799-6dd34b85859f"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.92183685302734,
"Text": "Any Company",
"Geometry": {
"BoundingBox": {
"Width": 0.13929548859596252,
"Height": 0.028437415137887,
"Left": 0.2969914376735687,
"Top": 0.6124796867370605
},
"Polygon": [
{
"X": 0.2969914376735687,
"Y": 0.6124796867370605
},
{
"X": 0.43628692626953125,
"Y": 0.6124796867370605
},
{
"X": 0.43628692626953125,
"Y": 0.6409170627593994
},
{
"X": 0.2969914376735687,
"Y": 0.6409170627593994
}
]
},
"Id": "0c411653-8830-4579-9553-c84de410cdac",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"0095350b-97af-48bc-85b5-efdecdea3251",
"1625318f-d518-4bd5-a490-793f596276e3"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.96369171142578,
"Text": "Head Baker",
"Geometry": {
"BoundingBox": {
"Width": 0.1144922524690628,
"Height": 0.023933909833431244,
"Left": 0.4914991855621338,
"Top": 0.6117483377456665
},
"Polygon": [
{
"X": 0.4914991855621338,
"Y": 0.6117483377456665
},
{
"X": 0.6059914231300354,
"Y": 0.6117483377456665
},
{
"X": 0.6059914231300354,
"Y": 0.635682225227356
},
{
"X": 0.4914991855621338,
"Y": 0.635682225227356
}
]
},
"Id": "ca5deaca-2b4b-4eb5-8066-d8ee63560a88",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"c179c994-f9bd-46d0-a6f6-1c17fab15cae",
"b7fc42cb-2c9f-4c6c-9265-a239e3f2b917"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.96701049804688,
"Text": "Family relocated",
"Geometry": {
"BoundingBox": {
"Width": 0.16212773323059082,
"Height": 0.029558565467596054,
"Left": 0.6626991033554077,
"Top": 0.6110962629318237
},
"Polygon": [
{
"X": 0.6626991033554077,
"Y": 0.6110962629318237
},
{
"X": 0.8248268365859985,
"Y": 0.6110962629318237
},
{
"X": 0.8248268365859985,
"Y": 0.6406548023223877
},
{
"X": 0.6626991033554077,
"Y": 0.6406548023223877
}
]
},
"Id": "71f8db9f-6b87-410d-9cf6-8ed045c956e1",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"c4b71e7b-bc33-4e62-aa85-ed42aa542fce",
"4461a37f-b765-448e-9d92-90e16dd9bfef"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 98.01339721679688,
"Text": "8/15/2013",
"Geometry": {
"BoundingBox": {
"Width": 0.10574938356876373,
"Height": 0.029482947662472725,
"Left": 0.05795907974243164,
"Top": 0.6609513759613037
},
"Polygon": [
{
"X": 0.05795907974243164,
"Y": 0.6609513759613037
},
{
"X": 0.16370846331119537,
"Y": 0.6609513759613037
},
{
"X": 0.16370846331119537,
"Y": 0.6904343366622925
},
{
"X": 0.05795907974243164,
"Y": 0.6904343366622925
}
]
},
"Id": "0a03c0c7-090e-4ad5-a039-f336ed888afb",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"6feacb30-5aed-490f-be47-8db2afffcff5"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.96372985839844,
"Text": "present",
"Geometry": {
"BoundingBox": {
"Width": 0.07850684970617294,
"Height": 0.027745705097913742,
"Left": 0.17733657360076904,
"Top": 0.6629167199134827
},
"Polygon": [
{
"X": 0.17733657360076904,
"Y": 0.6629167199134827
},
{
"X": 0.2558434307575226,
"Y": 0.6629167199134827
},
{
"X": 0.2558434307575226,
"Y": 0.6906623840332031
},
{
"X": 0.17733657360076904,
"Y": 0.6906623840332031
}
]
},
"Id": "a403e2f2-06e7-47fe-899d-37f519349c80",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"91e7cde3-c09a-46ec-82f2-87c69d05a6bd"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.94306945800781,
"Text": "Example Corp.",
"Geometry": {
"BoundingBox": {
"Width": 0.14189684391021729,
"Height": 0.029653020203113556,
"Left": 0.2976348102092743,
"Top": 0.6621953248977661
},
"Polygon": [
{
"X": 0.2976348102092743,
"Y": 0.6621953248977661
},
{
"X": 0.4395316541194916,
"Y": 0.6621953248977661
},
{
"X": 0.4395316541194916,
"Y": 0.6918483376502991
},
{
"X": 0.2976348102092743,
"Y": 0.6918483376502991
}
]
},
"Id": "c4f2aca3-43cf-4b2e-8e6c-ecfe8a6443ec",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"ec9a6502-3f7e-4708-85ad-913b61fd3e96",
"ffa12e77-df45-4c9a-b7aa-b1cd5d0b800d"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.9377670288086,
"Text": "Baker",
"Geometry": {
"BoundingBox": {
"Width": 0.059554312378168106,
"Height": 0.024651622399687767,
"Left": 0.49139392375946045,
"Top": 0.6625708341598511
},
"Polygon": [
{
"X": 0.49139392375946045,
"Y": 0.6625708341598511
},
{
"X": 0.5509482622146606,
"Y": 0.6625708341598511
},
{
"X": 0.5509482622146606,
"Y": 0.687222421169281
},
{
"X": 0.49139392375946045,
"Y": 0.687222421169281
}
]
},
"Id": "1dfb1091-e65c-4dac-a817-173d4fa6d2f8",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"71a8ef9e-d20c-4ff4-8498-268d2cadd0ce"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 98.37015533447266,
"Text": "N/A, current",
"Geometry": {
"BoundingBox": {
"Width": 0.12408605962991714,
"Height": 0.028561871498823166,
"Left": 0.6616346836090088,
"Top": 0.661875307559967
},
"Polygon": [
{
"X": 0.6616346836090088,
"Y": 0.661875307559967
},
{
"X": 0.7857207655906677,
"Y": 0.661875307559967
},
{
"X": 0.7857207655906677,
"Y": 0.6904371976852417
},
{
"X": 0.6616346836090088,
"Y": 0.6904371976852417
}
]
},
"Id": "86d55453-6afb-4444-ae7e-290691073361",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"bba4af42-51e4-405d-b515-8f339be6951d",
"7818ad9f-8276-4601-93af-5d22f9dacff3"
]
}
]
},
{
"BlockType": "LINE",
"Confidence": 99.97209930419922,
"Text": "employer",
"Geometry": {
"BoundingBox": {
"Width": 0.09693116694688797,
"Height": 0.028156692162156105,
"Left": 0.6614667773246765,
"Top": 0.6965447664260864
},
"Polygon": [
{
"X": 0.6614667773246765,
"Y": 0.6965447664260864
},
{
"X": 0.7583979368209839,
"Y": 0.6965447664260864
},
{
"X": 0.7583979368209839,
"Y": 0.724701464176178
},
{
"X": 0.6614667773246765,
"Y": 0.724701464176178
}
]
},
"Id": "e4de597f-26ff-45bf-96e6-3d8c16a41bdd",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"6258cb19-2911-48d9-a312-1f4defbff8c9"
]
}
]
},
{
"BlockType": "WORD",
"Confidence": 99.97262573242188,
"Text": "Employment",
"Geometry": {
"BoundingBox": {
"Width": 0.18376803398132324,
"Height": 0.041682254523038864,
"Left": 0.2688162624835968,
"Top": 0.10875548422336578
},
"Polygon": [
{
"X": 0.2688162624835968,
"Y": 0.10875548422336578
},
{
"X": 0.45258429646492004,
"Y": 0.10875548422336578
},
{
"X": 0.45258429646492004,
"Y": 0.15043774247169495
},
{
"X": 0.2688162624835968,
"Y": 0.15043774247169495
}
]
},
"Id": "867336c0-5159-4f82-ba47-c1b585c3236b"
},
{
"BlockType": "WORD",
"Confidence": 99.98770141601562,
"Text": "Application",
"Geometry": {
"BoundingBox": {
"Width": 0.16016238927841187,
"Height": 0.04193491116166115,
"Left": 0.45361328125,
"Top": 0.10869424045085907
},
"Polygon": [
{
"X": 0.45361328125,
"Y": 0.10869424045085907
},
{
"X": 0.6137756705284119,
"Y": 0.10869424045085907
},
{
"X": 0.6137756705284119,
"Y": 0.15062914788722992
},
{
"X": 0.45361328125,
"Y": 0.15062914788722992
}
]
},
"Id": "6676cc9c-8305-44c2-8a24-96f25c2610f8"
},
{
"BlockType": "WORD",
"Confidence": 98.07928466796875,
"Text": "Applicant",
"Geometry": {
"BoundingBox": {
"Width": 0.10880158841609955,
"Height": 0.03348984941840172,
"Left": 0.05472326651215553,
"Top": 0.18171176314353943
},
"Polygon": [
{
"X": 0.05472326651215553,
"Y": 0.18171176314353943
},
{
"X": 0.16352485120296478,
"Y": 0.18171176314353943
},
{
"X": 0.16352485120296478,
"Y": 0.21520160138607025
},
{
"X": 0.05472326651215553,
"Y": 0.21520160138607025
}
]
},
"Id": "8d9bc2db-e742-448c-87cc-457b295b7414"
},
{
"BlockType": "WORD",
"Confidence": 99.74314880371094,
"Text": "Information",
"Geometry": {
"BoundingBox": {
"Width": 0.1313006430864334,
"Height": 0.028380444273352623,
"Left": 0.16536998748779297,
"Top": 0.18081974983215332
},
"Polygon": [
{
"X": 0.16536998748779297,
"Y": 0.18081974983215332
},
{
"X": 0.2966706454753876,
"Y": 0.18081974983215332
},
{
"X": 0.2966706454753876,
"Y": 0.2092001885175705
},
{
"X": 0.16536998748779297,
"Y": 0.2092001885175705
}
]
},
"Id": "b6df89bd-c730-47b7-8ff7-66814bf08c79"
},
{
"BlockType": "WORD",
"Confidence": 99.92625427246094,
"Text": "Full",
"Geometry": {
"BoundingBox": {
"Width": 0.03838871791958809,
"Height": 0.024782273918390274,
"Left": 0.05686451494693756,
"Top": 0.24320881068706512
},
"Polygon": [
{
"X": 0.05686451494693756,
"Y": 0.24320881068706512
},
{
"X": 0.09525322914123535,
"Y": 0.24320881068706512
},
{
"X": 0.09525322914123535,
"Y": 0.2679910659790039
},
{
"X": 0.05686451494693756,
"Y": 0.2679910659790039
}
]
},
"Id": "b97d5d44-ec65-47ee-8f5f-5d7fb655859c"
},
{
"BlockType": "WORD",
"Confidence": 99.95582580566406,
"Text": "Name:",
"Geometry": {
"BoundingBox": {
"Width": 0.06910920888185501,
"Height": 0.024375608190894127,
"Left": 0.09674317389726639,
"Top": 0.2438104897737503
},
"Polygon": [
{
"X": 0.09674317389726639,
"Y": 0.2438104897737503
},
{
"X": 0.1658523827791214,
"Y": 0.2438104897737503
},
{
"X": 0.1658523827791214,
"Y": 0.268186092376709
},
{
"X": 0.09674317389726639,
"Y": 0.268186092376709
}
]
},
"Id": "1178463a-9455-46cb-bc51-89fba530a31c"
},
{
"BlockType": "WORD",
"Confidence": 99.85381317138672,
"Text": "Jane",
"Geometry": {
"BoundingBox": {
"Width": 0.04605354741215706,
"Height": 0.0233971755951643,
"Left": 0.1671261042356491,
"Top": 0.24488399922847748
},
"Polygon": [
{
"X": 0.1671261042356491,
"Y": 0.24488399922847748
},
{
"X": 0.21317964792251587,
"Y": 0.24488399922847748
},
{
"X": 0.21317964792251587,
"Y": 0.26828116178512573
},
{
"X": 0.1671261042356491,
"Y": 0.26828116178512573
}
]
},
"Id": "903deb0d-9ec2-4a8f-a840-861ec5a259f5"
},
{
"BlockType": "WORD",
"Confidence": 99.9676513671875,
"Text": "Doe",
"Geometry": {
"BoundingBox": {
"Width": 0.04206998646259308,
"Height": 0.022564135491847992,
"Left": 0.2157279998064041,
"Top": 0.24515298008918762
},
"Polygon": [
{
"X": 0.2157279998064041,
"Y": 0.24515298008918762
},
{
"X": 0.2577979862689972,
"Y": 0.24515298008918762
},
{
"X": 0.2577979862689972,
"Y": 0.2677171230316162
},
{
"X": 0.2157279998064041,
"Y": 0.2677171230316162
}
]
},
"Id": "636659d7-5766-4ba8-8be3-f76b455cedff"
},
{
"BlockType": "WORD",
"Confidence": 99.87757110595703,
"Text": "Phone",
"Geometry": {
"BoundingBox": {
"Width": 0.06762398779392242,
"Height": 0.024893246591091156,
"Left": 0.056762322783470154,
"Top": 0.30236420035362244
},
"Polygon": [
{
"X": 0.056762322783470154,
"Y": 0.30236420035362244
},
{
"X": 0.12438630312681198,
"Y": 0.30236420035362244
},
{
"X": 0.12438630312681198,
"Y": 0.3272574543952942
},
{
"X": 0.056762322783470154,
"Y": 0.3272574543952942
}
]
},
"Id": "44137f51-f5c5-4eed-8b29-39bdb033aba5"
},
{
"BlockType": "WORD",
"Confidence": 99.9579849243164,
"Text": "Number:",
"Geometry": {
"BoundingBox": {
"Width": 0.0910666435956955,
"Height": 0.024112435057759285,
"Left": 0.12438613921403885,
"Top": 0.303166002035141
},
"Polygon": [
{
"X": 0.12438613921403885,
"Y": 0.303166002035141
},
{
"X": 0.21545279026031494,
"Y": 0.303166002035141
},
{
"X": 0.21545279026031494,
"Y": 0.3272784352302551
},
{
"X": 0.12438613921403885,
"Y": 0.3272784352302551
}
]
},
"Id": "b3df9bf1-99be-41c1-97c4-26e4300d1a3e"
},
{
"BlockType": "WORD",
"Confidence": 99.89307403564453,
"Text": "555-0100",
"Geometry": {
"BoundingBox": {
"Width": 0.09645302593708038,
"Height": 0.024122178554534912,
"Left": 0.21579308807849884,
"Top": 0.3036654591560364
},
"Polygon": [
{
"X": 0.21579308807849884,
"Y": 0.3036654591560364
},
{
"X": 0.3122461140155792,
"Y": 0.3036654591560364
},
{
"X": 0.3122461140155792,
"Y": 0.3277876377105713
},
{
"X": 0.21579308807849884,
"Y": 0.3277876377105713
}
]
},
"Id": "b206a92e-c997-4027-a761-bf02e51ae80b"
},
{
"BlockType": "WORD",
"Confidence": 95.84492492675781,
"Text": "Home",
"Geometry": {
"BoundingBox": {
"Width": 0.06233755126595497,
"Height": 0.02277320995926857,
"Left": 0.056902818381786346,
"Top": 0.36357343196868896
},
"Polygon": [
{
"X": 0.056902818381786346,
"Y": 0.36357343196868896
},
{
"X": 0.11924036592245102,
"Y": 0.36357343196868896
},
{
"X": 0.11924036592245102,
"Y": 0.38634663820266724
},
{
"X": 0.056902818381786346,
"Y": 0.38634663820266724
}
]
},
"Id": "30de27e6-e1cd-48c8-bb23-bb760d67665e"
},
{
"BlockType": "WORD",
"Confidence": 99.95843505859375,
"Text": "Address:",
"Geometry": {
"BoundingBox": {
"Width": 0.08885132521390915,
"Height": 0.02402655966579914,
"Left": 0.1205984577536583,
"Top": 0.36211779713630676
},
"Polygon": [
{
"X": 0.1205984577536583,
"Y": 0.36211779713630676
},
{
"X": 0.20944978296756744,
"Y": 0.36211779713630676
},
{
"X": 0.20944978296756744,
"Y": 0.38614436984062195
},
{
"X": 0.1205984577536583,
"Y": 0.38614436984062195
}
]
},
"Id": "46021d5d-7305-4a1a-9f0d-5c380710cb16"
},
{
"BlockType": "WORD",
"Confidence": 99.96153259277344,
"Text": "123",
"Geometry": {
"BoundingBox": {
"Width": 0.03901050612330437,
"Height": 0.02404249645769596,
"Left": 0.21211272478103638,
"Top": 0.362998366355896
},
"Polygon": [
{
"X": 0.21211272478103638,
"Y": 0.362998366355896
},
{
"X": 0.25112321972846985,
"Y": 0.362998366355896
},
{
"X": 0.25112321972846985,
"Y": 0.3870408535003662
},
{
"X": 0.21211272478103638,
"Y": 0.3870408535003662
}
]
},
"Id": "c460cfa6-c214-49fb-8190-15ca0604bfff"
},
{
"BlockType": "WORD",
"Confidence": 89.46643829345703,
"Text": "Any",
"Geometry": {
"BoundingBox": {
"Width": 0.04274570196866989,
"Height": 0.02554050274193287,
"Left": 0.25130027532577515,
"Top": 0.36296138167381287
},
"Polygon": [
{
"X": 0.25130027532577515,
"Y": 0.36296138167381287
},
{
"X": 0.29404598474502563,
"Y": 0.36296138167381287
},
{
"X": 0.29404598474502563,
"Y": 0.388501912355423
},
{
"X": 0.25130027532577515,
"Y": 0.388501912355423
}
]
},
"Id": "6496c2db-e4d6-4c69-b8f1-2eaa57e02c03"
},
{
"BlockType": "WORD",
"Confidence": 95.30614471435547,
"Text": "Street.",
"Geometry": {
"BoundingBox": {
"Width": 0.06754569709300995,
"Height": 0.026929987594485283,
"Left": 0.29430264234542847,
"Top": 0.36252930760383606
},
"Polygon": [
{
"X": 0.29430264234542847,
"Y": 0.36252930760383606
},
{
"X": 0.3618483543395996,
"Y": 0.36252930760383606
},
{
"X": 0.3618483543395996,
"Y": 0.3894593119621277
},
{
"X": 0.29430264234542847,
"Y": 0.3894593119621277
}
]
},
"Id": "ba8ecd92-8c0f-4b93-b665-df611f73b73e"
},
{
"BlockType": "WORD",
"Confidence": 95.07340240478516,
"Text": "Any",
"Geometry": {
"BoundingBox": {
"Width": 0.04174766317009926,
"Height": 0.025769418105483055,
"Left": 0.36337390542030334,
"Top": 0.36298713088035583
},
"Polygon": [
{
"X": 0.36337390542030334,
"Y": 0.36298713088035583
},
{
"X": 0.4051215648651123,
"Y": 0.36298713088035583
},
{
"X": 0.4051215648651123,
"Y": 0.38875654339790344
},
{
"X": 0.36337390542030334,
"Y": 0.38875654339790344
}
]
},
"Id": "13debf03-f2fb-4a0e-954c-f51d042d507b"
},
{
"BlockType": "WORD",
"Confidence": 97.53190612792969,
"Text": "Town,",
"Geometry": {
"BoundingBox": {
"Width": 0.06333468854427338,
"Height": 0.026343638077378273,
"Left": 0.4047435522079468,
"Top": 0.36307764053344727
},
"Polygon": [
{
"X": 0.4047435522079468,
"Y": 0.36307764053344727
},
{
"X": 0.46807822585105896,
"Y": 0.36307764053344727
},
{
"X": 0.46807822585105896,
"Y": 0.3894212543964386
},
{
"X": 0.4047435522079468,
"Y": 0.3894212543964386
}
]
},
"Id": "959b419a-160c-42bb-9465-e2a96a85bbc1"
},
{
"BlockType": "WORD",
"Confidence": 97.2723159790039,
"Text": "USA",
"Geometry": {
"BoundingBox": {
"Width": 0.0442136712372303,
"Height": 0.023261813446879387,
"Left": 0.4706275761127472,
"Top": 0.36324241757392883
},
"Polygon": [
{
"X": 0.4706275761127472,
"Y": 0.36324241757392883
},
{
"X": 0.5148412585258484,
"Y": 0.36324241757392883
},
{
"X": 0.5148412585258484,
"Y": 0.38650423288345337
},
{
"X": 0.4706275761127472,
"Y": 0.38650423288345337
}
]
},
"Id": "e293ff66-9eef-4c81-a438-2e00d4da4ea6"
},
{
"BlockType": "WORD",
"Confidence": 99.98529815673828,
"Text": "Mailing",
"Geometry": {
"BoundingBox": {
"Width": 0.07753250002861023,
"Height": 0.028604518622159958,
"Left": 0.05674762651324272,
"Top": 0.42185497283935547
},
"Polygon": [
{
"X": 0.05674762651324272,
"Y": 0.42185497283935547
},
{
"X": 0.13428013026714325,
"Y": 0.42185497283935547
},
{
"X": 0.13428013026714325,
"Y": 0.45045948028564453
},
{
"X": 0.05674762651324272,
"Y": 0.45045948028564453
}
]
},
"Id": "a1cc355c-23c4-4d26-bebf-296b6faa0953"
},
{
"BlockType": "WORD",
"Confidence": 99.86154174804688,
"Text": "Address:",
"Geometry": {
"BoundingBox": {
"Width": 0.08943217247724533,
"Height": 0.026284344494342804,
"Left": 0.1349620819091797,
"Top": 0.42124423384666443
},
"Polygon": [
{
"X": 0.1349620819091797,
"Y": 0.42124423384666443
},
{
"X": 0.22439426183700562,
"Y": 0.42124423384666443
},
{
"X": 0.22439426183700562,
"Y": 0.44752857089042664
},
{
"X": 0.1349620819091797,
"Y": 0.44752857089042664
}
]
},
"Id": "8b6e9bbb-cefb-4e57-914d-f6755d97c326"
},
{
"BlockType": "WORD",
"Confidence": 99.87336730957031,
"Text": "same",
"Geometry": {
"BoundingBox": {
"Width": 0.05472267419099808,
"Height": 0.018872573971748352,
"Left": 0.23098768293857574,
"Top": 0.4266287088394165
},
"Polygon": [
{
"X": 0.23098768293857574,
"Y": 0.4266287088394165
},
{
"X": 0.2857103645801544,
"Y": 0.4266287088394165
},
{
"X": 0.2857103645801544,
"Y": 0.44550129771232605
},
{
"X": 0.23098768293857574,
"Y": 0.44550129771232605
}
]
},
"Id": "70a93a6e-558d-4a40-a706-def93b549c8a"
},
{
"BlockType": "WORD",
"Confidence": 59.94330596923828,
"Text": "as",
"Geometry": {
"BoundingBox": {
"Width": 0.024843061342835426,
"Height": 0.01788768731057644,
"Left": 0.28731441497802734,
"Top": 0.4267670810222626
},
"Polygon": [
{
"X": 0.28731441497802734,
"Y": 0.4267670810222626
},
{
"X": 0.3121574819087982,
"Y": 0.4267670810222626
},
{
"X": 0.3121574819087982,
"Y": 0.44465476274490356
},
{
"X": 0.28731441497802734,
"Y": 0.44465476274490356
}
]
},
"Id": "748322af-51a1-48a1-b1cd-bd15ee315d72"
},
{
"BlockType": "WORD",
"Confidence": 99.94623565673828,
"Text": "home",
"Geometry": {
"BoundingBox": {
"Width": 0.0601363405585289,
"Height": 0.025572892278432846,
"Left": 0.3134092688560486,
"Top": 0.42043840885162354
},
"Polygon": [
{
"X": 0.3134092688560486,
"Y": 0.42043840885162354
},
{
"X": 0.3735456168651581,
"Y": 0.42043840885162354
},
{
"X": 0.3735456168651581,
"Y": 0.4460113048553467
},
{
"X": 0.3134092688560486,
"Y": 0.4460113048553467
}
]
},
"Id": "09cf409f-9118-4a98-bf8d-88b0eb057de5"
},
{
"BlockType": "WORD",
"Confidence": 99.9508285522461,
"Text": "address",
"Geometry": {
"BoundingBox": {
"Width": 0.07886624336242676,
"Height": 0.025227714329957962,
"Left": 0.3739984929561615,
"Top": 0.4205864667892456
},
"Polygon": [
{
"X": 0.3739984929561615,
"Y": 0.4205864667892456
},
{
"X": 0.45286473631858826,
"Y": 0.4205864667892456
},
{
"X": 0.45286473631858826,
"Y": 0.4458141624927521
},
{
"X": 0.3739984929561615,
"Y": 0.4458141624927521
}
]
},
"Id": "8a8a16c7-5ac7-430d-8793-5acb6098d43f"
},
{
"BlockType": "WORD",
"Confidence": 99.65145874023438,
"Text": "Previous",
"Geometry": {
"BoundingBox": {
"Width": 0.09827706962823868,
"Height": 0.026393704116344452,
"Left": 0.2996804118156433,
"Top": 0.5108594298362732
},
"Polygon": [
{
"X": 0.2996804118156433,
"Y": 0.5108594298362732
},
{
"X": 0.3979574739933014,
"Y": 0.5108594298362732
},
{
"X": 0.3979574739933014,
"Y": 0.5372531414031982
},
{
"X": 0.2996804118156433,
"Y": 0.5372531414031982
}
]
},
"Id": "c6fc7ab7-5a0c-4234-aaa5-7cf9c60db019"
},
{
"BlockType": "WORD",
"Confidence": 99.802490234375,
"Text": "Employment",
"Geometry": {
"BoundingBox": {
"Width": 0.14266455173492432,
"Height": 0.0325518362224102,
"Left": 0.39850953221321106,
"Top": 0.5093804001808167
},
"Polygon": [
{
"X": 0.39850953221321106,
"Y": 0.5093804001808167
},
{
"X": 0.541174054145813,
"Y": 0.5093804001808167
},
{
"X": 0.541174054145813,
"Y": 0.541932225227356
},
{
"X": 0.39850953221321106,
"Y": 0.541932225227356
}
]
},
"Id": "84802773-12d9-4b17-9938-dfc2c5a048d7"
},
{
"BlockType": "WORD",
"Confidence": 99.96288299560547,
"Text": "History",
"Geometry": {
"BoundingBox": {
"Width": 0.08152171224355698,
"Height": 0.032529834657907486,
"Left": 0.5412410497665405,
"Top": 0.5099014639854431
},
"Polygon": [
{
"X": 0.5412410497665405,
"Y": 0.5099014639854431
},
{
"X": 0.6227627396583557,
"Y": 0.5099014639854431
},
{
"X": 0.6227627396583557,
"Y": 0.5424312949180603
},
{
"X": 0.5412410497665405,
"Y": 0.5424312949180603
}
]
},
"Id": "0b653cfc-5455-4578-9b9b-c0f27a530380"
},
{
"BlockType": "WORD",
"Confidence": 99.89093780517578,
"Text": "Start",
"Geometry": {
"BoundingBox": {
"Width": 0.05236509442329407,
"Height": 0.02479562908411026,
"Left": 0.058634281158447266,
"Top": 0.5635442137718201
},
"Polygon": [
{
"X": 0.058634281158447266,
"Y": 0.5635442137718201
},
{
"X": 0.11099937558174133,
"Y": 0.5635442137718201
},
{
"X": 0.11099937558174133,
"Y": 0.5883398652076721
},
{
"X": 0.058634281158447266,
"Y": 0.5883398652076721
}
]
},
"Id": "3896e8c5-498d-4fd5-8fa4-f46f7289b31b"
},
{
"BlockType": "WORD",
"Confidence": 99.97541046142578,
"Text": "Date",
"Geometry": {
"BoundingBox": {
"Width": 0.0518001914024353,
"Height": 0.021402563899755478,
"Left": 0.11138089001178741,
"Top": 0.5645182132720947
},
"Polygon": [
{
"X": 0.11138089001178741,
"Y": 0.5645182132720947
},
{
"X": 0.16318108141422272,
"Y": 0.5645182132720947
},
{
"X": 0.16318108141422272,
"Y": 0.5859208106994629
},
{
"X": 0.11138089001178741,
"Y": 0.5859208106994629
}
]
},
"Id": "a51e26ac-30bc-4490-bf32-eab3a0bfda80"
},
{
"BlockType": "WORD",
"Confidence": 99.91999816894531,
"Text": "End",
"Geometry": {
"BoundingBox": {
"Width": 0.04083268344402313,
"Height": 0.024199342355132103,
"Left": 0.17723050713539124,
"Top": 0.5627442598342896
},
"Polygon": [
{
"X": 0.17723050713539124,
"Y": 0.5627442598342896
},
{
"X": 0.21806319057941437,
"Y": 0.5627442598342896
},
{
"X": 0.21806319057941437,
"Y": 0.5869436264038086
},
{
"X": 0.17723050713539124,
"Y": 0.5869436264038086
}
]
},
"Id": "30ba3dea-ebcc-48c7-90a7-358a62324b0a"
},
{
"BlockType": "WORD",
"Confidence": 99.95671844482422,
"Text": "Date",
"Geometry": {
"BoundingBox": {
"Width": 0.04909238591790199,
"Height": 0.022921862080693245,
"Left": 0.2194577008485794,
"Top": 0.5639602541923523
},
"Polygon": [
{
"X": 0.2194577008485794,
"Y": 0.5639602541923523
},
{
"X": 0.2685500979423523,
"Y": 0.5639602541923523
},
{
"X": 0.2685500979423523,
"Y": 0.5868821144104004
},
{
"X": 0.2194577008485794,
"Y": 0.5868821144104004
}
]
},
"Id": "dff1fcaa-4ac3-46ba-9345-926a6d3eea5b"
},
{
"BlockType": "WORD",
"Confidence": 99.97685241699219,
"Text": "Employer",
"Geometry": {
"BoundingBox": {
"Width": 0.09844242036342621,
"Height": 0.028675684705376625,
"Left": 0.2963601052761078,
"Top": 0.5627250671386719
},
"Polygon": [
{
"X": 0.2963601052761078,
"Y": 0.5627250671386719
},
{
"X": 0.3948025405406952,
"Y": 0.5627250671386719
},
{
"X": 0.3948025405406952,
"Y": 0.5914007425308228
},
{
"X": 0.2963601052761078,
"Y": 0.5914007425308228
}
]
},
"Id": "e7e34961-66d1-41e8-a6eb-e3658af4f4f2"
},
{
"BlockType": "WORD",
"Confidence": 99.97390747070312,
"Text": "Name",
"Geometry": {
"BoundingBox": {
"Width": 0.0631643757224083,
"Height": 0.023669252172112465,
"Left": 0.3962380290031433,
"Top": 0.563398003578186
},
"Polygon": [
{
"X": 0.3962380290031433,
"Y": 0.563398003578186
},
{
"X": 0.4594023823738098,
"Y": 0.563398003578186
},
{
"X": 0.4594023823738098,
"Y": 0.5870672464370728
},
{
"X": 0.3962380290031433,
"Y": 0.5870672464370728
}
]
},
"Id": "455c435e-8f96-4ab1-9bc0-c446fc81d88c"
},
{
"BlockType": "WORD",
"Confidence": 99.96138000488281,
"Text": "Position",
"Geometry": {
"BoundingBox": {
"Width": 0.0837700366973877,
"Height": 0.02420811727643013,
"Left": 0.4912456274032593,
"Top": 0.5635548830032349
},
"Polygon": [
{
"X": 0.4912456274032593,
"Y": 0.5635548830032349
},
{
"X": 0.575015664100647,
"Y": 0.5635548830032349
},
{
"X": 0.575015664100647,
"Y": 0.5877630114555359
},
{
"X": 0.4912456274032593,
"Y": 0.5877630114555359
}
]
},
"Id": "a0d2b508-1aee-485d-ad11-756ceb514a5d"
},
{
"BlockType": "WORD",
"Confidence": 99.9276123046875,
"Text": "Held",
"Geometry": {
"BoundingBox": {
"Width": 0.0493694432079792,
"Height": 0.02457626350224018,
"Left": 0.5762540102005005,
"Top": 0.5625089406967163
},
"Polygon": [
{
"X": 0.5762540102005005,
"Y": 0.5625089406967163
},
{
"X": 0.6256234645843506,
"Y": 0.5625089406967163
},
{
"X": 0.6256234645843506,
"Y": 0.5870852470397949
},
{
"X": 0.5762540102005005,
"Y": 0.5870852470397949
}
]
},
"Id": "c89b4fc2-fb66-4a59-9027-39e4f71f3bf0"
},
{
"BlockType": "WORD",
"Confidence": 99.98682403564453,
"Text": "Reason",
"Geometry": {
"BoundingBox": {
"Width": 0.07511575520038605,
"Height": 0.02333788201212883,
"Left": 0.6615156531333923,
"Top": 0.563364565372467
},
"Polygon": [
{
"X": 0.6615156531333923,
"Y": 0.563364565372467
},
{
"X": 0.7366313934326172,
"Y": 0.563364565372467
},
{
"X": 0.7366313934326172,
"Y": 0.5867024660110474
},
{
"X": 0.6615156531333923,
"Y": 0.5867024660110474
}
]
},
"Id": "240c587b-69fd-4f6e-88fc-2d7c09925aaa"
},
{
"BlockType": "WORD",
"Confidence": 99.97938537597656,
"Text": "for",
"Geometry": {
"BoundingBox": {
"Width": 0.03364034369587898,
"Height": 0.024793434888124466,
"Left": 0.7380127310752869,
"Top": 0.5621970891952515
},
"Polygon": [
{
"X": 0.7380127310752869,
"Y": 0.5621970891952515
},
{
"X": 0.7716530561447144,
"Y": 0.5621970891952515
},
{
"X": 0.7716530561447144,
"Y": 0.5869905352592468
},
{
"X": 0.7380127310752869,
"Y": 0.5869905352592468
}
]
},
"Id": "b57fb3a0-bea3-4fa9-acc4-a7bff1e216e1"
},
{
"BlockType": "WORD",
"Confidence": 99.9616928100586,
"Text": "leaving",
"Geometry": {
"BoundingBox": {
"Width": 0.07448404282331467,
"Height": 0.03021201491355896,
"Left": 0.7724781632423401,
"Top": 0.5617849826812744
},
"Polygon": [
{
"X": 0.7724781632423401,
"Y": 0.5617849826812744
},
{
"X": 0.8469621539115906,
"Y": 0.5617849826812744
},
{
"X": 0.8469621539115906,
"Y": 0.5919970273971558
},
{
"X": 0.7724781632423401,
"Y": 0.5919970273971558
}
]
},
"Id": "78651135-03cb-4a46-b5de-940b656bf56d"
},
{
"BlockType": "WORD",
"Confidence": 99.7265625,
"Text": "1/15/2009",
"Geometry": {
"BoundingBox": {
"Width": 0.10728543251752853,
"Height": 0.02937249094247818,
"Left": 0.058168504387140274,
"Top": 0.610666811466217
},
"Polygon": [
{
"X": 0.058168504387140274,
"Y": 0.610666811466217
},
{
"X": 0.1654539406299591,
"Y": 0.610666811466217
},
{
"X": 0.1654539406299591,
"Y": 0.6400392651557922
},
{
"X": 0.058168504387140274,
"Y": 0.6400392651557922
}
]
},
"Id": "4f291f94-7035-4996-b2de-4dbfdfa1eb9e"
},
{
"BlockType": "WORD",
"Confidence": 97.82591247558594,
"Text": "6/30/2013",
"Geometry": {
"BoundingBox": {
"Width": 0.1048305407166481,
"Height": 0.03000839240849018,
"Left": 0.176572784781456,
"Top": 0.610440731048584
},
"Polygon": [
{
"X": 0.176572784781456,
"Y": 0.610440731048584
},
{
"X": 0.2814033329486847,
"Y": 0.610440731048584
},
{
"X": 0.2814033329486847,
"Y": 0.6404491066932678
},
{
"X": 0.176572784781456,
"Y": 0.6404491066932678
}
]
},
"Id": "9ca8ef6d-8649-43e8-8799-6dd34b85859f"
},
{
"BlockType": "WORD",
"Confidence": 99.94072723388672,
"Text": "Any",
"Geometry": {
"BoundingBox": {
"Width": 0.042685654014348984,
"Height": 0.027706347405910492,
"Left": 0.2969914376735687,
"Top": 0.6124796867370605
},
"Polygon": [
{
"X": 0.2969914376735687,
"Y": 0.6124796867370605
},
{
"X": 0.339677095413208,
"Y": 0.6124796867370605
},
{
"X": 0.339677095413208,
"Y": 0.6401860117912292
},
{
"X": 0.2969914376735687,
"Y": 0.6401860117912292
}
]
},
"Id": "0095350b-97af-48bc-85b5-efdecdea3251"
},
{
"BlockType": "WORD",
"Confidence": 99.90294647216797,
"Text": "Company",
"Geometry": {
"BoundingBox": {
"Width": 0.09726428985595703,
"Height": 0.02821243554353714,
"Left": 0.3390226364135742,
"Top": 0.6127046346664429
},
"Polygon": [
{
"X": 0.3390226364135742,
"Y": 0.6127046346664429
},
{
"X": 0.43628692626953125,
"Y": 0.6127046346664429
},
{
"X": 0.43628692626953125,
"Y": 0.6409170627593994
},
{
"X": 0.3390226364135742,
"Y": 0.6409170627593994
}
]
},
"Id": "1625318f-d518-4bd5-a490-793f596276e3"
},
{
"BlockType": "WORD",
"Confidence": 99.95670318603516,
"Text": "Head",
"Geometry": {
"BoundingBox": {
"Width": 0.053579334169626236,
"Height": 0.023406917229294777,
"Left": 0.4914991855621338,
"Top": 0.6122753024101257
},
"Polygon": [
{
"X": 0.4914991855621338,
"Y": 0.6122753024101257
},
{
"X": 0.5450785160064697,
"Y": 0.6122753024101257
},
{
"X": 0.5450785160064697,
"Y": 0.635682225227356
},
{
"X": 0.4914991855621338,
"Y": 0.635682225227356
}
]
},
"Id": "c179c994-f9bd-46d0-a6f6-1c17fab15cae"
},
{
"BlockType": "WORD",
"Confidence": 99.9706802368164,
"Text": "Baker",
"Geometry": {
"BoundingBox": {
"Width": 0.05853709951043129,
"Height": 0.023842422291636467,
"Left": 0.5474543571472168,
"Top": 0.6117483377456665
},
"Polygon": [
{
"X": 0.5474543571472168,
"Y": 0.6117483377456665
},
{
"X": 0.6059914231300354,
"Y": 0.6117483377456665
},
{
"X": 0.6059914231300354,
"Y": 0.6355907320976257
},
{
"X": 0.5474543571472168,
"Y": 0.6355907320976257
}
]
},
"Id": "b7fc42cb-2c9f-4c6c-9265-a239e3f2b917"
},
{
"BlockType": "WORD",
"Confidence": 99.95112609863281,
"Text": "Family",
"Geometry": {
"BoundingBox": {
"Width": 0.06647901237010956,
"Height": 0.029558565467596054,
"Left": 0.6626991033554077,
"Top": 0.6110962629318237
},
"Polygon": [
{
"X": 0.6626991033554077,
"Y": 0.6110962629318237
},
{
"X": 0.7291781306266785,
"Y": 0.6110962629318237
},
{
"X": 0.7291781306266785,
"Y": 0.6406548023223877
},
{
"X": 0.6626991033554077,
"Y": 0.6406548023223877
}
]
},
"Id": "c4b71e7b-bc33-4e62-aa85-ed42aa542fce"
},
{
"BlockType": "WORD",
"Confidence": 99.98289489746094,
"Text": "relocated",
"Geometry": {
"BoundingBox": {
"Width": 0.09518317878246307,
"Height": 0.025228939950466156,
"Left": 0.729643702507019,
"Top": 0.6111786961555481
},
"Polygon": [
{
"X": 0.729643702507019,
"Y": 0.6111786961555481
},
{
"X": 0.8248268365859985,
"Y": 0.6111786961555481
},
{
"X": 0.8248268365859985,
"Y": 0.6364076137542725
},
{
"X": 0.729643702507019,
"Y": 0.6364076137542725
}
]
},
"Id": "4461a37f-b765-448e-9d92-90e16dd9bfef"
},
{
"BlockType": "WORD",
"Confidence": 98.01339721679688,
"Text": "8/15/2013",
"Geometry": {
"BoundingBox": {
"Width": 0.10574938356876373,
"Height": 0.029482947662472725,
"Left": 0.05795907974243164,
"Top": 0.6609513759613037
},
"Polygon": [
{
"X": 0.05795907974243164,
"Y": 0.6609513759613037
},
{
"X": 0.16370846331119537,
"Y": 0.6609513759613037
},
{
"X": 0.16370846331119537,
"Y": 0.6904343366622925
},
{
"X": 0.05795907974243164,
"Y": 0.6904343366622925
}
]
},
"Id": "6feacb30-5aed-490f-be47-8db2afffcff5"
},
{
"BlockType": "WORD",
"Confidence": 99.96372985839844,
"Text": "present",
"Geometry": {
"BoundingBox": {
"Width": 0.07850684970617294,
"Height": 0.027745705097913742,
"Left": 0.17733657360076904,
"Top": 0.6629167199134827
},
"Polygon": [
{
"X": 0.17733657360076904,
"Y": 0.6629167199134827
},
{
"X": 0.2558434307575226,
"Y": 0.6629167199134827
},
{
"X": 0.2558434307575226,
"Y": 0.6906623840332031
},
{
"X": 0.17733657360076904,
"Y": 0.6906623840332031
}
]
},
"Id": "91e7cde3-c09a-46ec-82f2-87c69d05a6bd"
},
{
"BlockType": "WORD",
"Confidence": 99.97209167480469,
"Text": "Example",
"Geometry": {
"BoundingBox": {
"Width": 0.08535897731781006,
"Height": 0.029653020203113556,
"Left": 0.2976348102092743,
"Top": 0.6621953248977661
},
"Polygon": [
{
"X": 0.2976348102092743,
"Y": 0.6621953248977661
},
{
"X": 0.38299378752708435,
"Y": 0.6621953248977661
},
{
"X": 0.38299378752708435,
"Y": 0.6918483376502991
},
{
"X": 0.2976348102092743,
"Y": 0.6918483376502991
}
]
},
"Id": "ffa12e77-df45-4c9a-b7aa-b1cd5d0b800d"
},
{
"BlockType": "WORD",
"Confidence": 99.91404724121094,
"Text": "Corp.",
"Geometry": {
"BoundingBox": {
"Width": 0.05491531267762184,
"Height": 0.027312006801366806,
"Left": 0.38461634516716003,
"Top": 0.6630183458328247
},
"Polygon": [
{
"X": 0.38461634516716003,
"Y": 0.6630183458328247
},
{
"X": 0.4395316541194916,
"Y": 0.6630183458328247
},
{
"X": 0.4395316541194916,
"Y": 0.6903303265571594
},
{
"X": 0.38461634516716003,
"Y": 0.6903303265571594
}
]
},
"Id": "ec9a6502-3f7e-4708-85ad-913b61fd3e96"
},
{
"BlockType": "WORD",
"Confidence": 99.9377670288086,
"Text": "Baker",
"Geometry": {
"BoundingBox": {
"Width": 0.059554312378168106,
"Height": 0.024651622399687767,
"Left": 0.49139392375946045,
"Top": 0.6625708341598511
},
"Polygon": [
{
"X": 0.49139392375946045,
"Y": 0.6625708341598511
},
{
"X": 0.5509482622146606,
"Y": 0.6625708341598511
},
{
"X": 0.5509482622146606,
"Y": 0.687222421169281
},
{
"X": 0.49139392375946045,
"Y": 0.687222421169281
}
]
},
"Id": "71a8ef9e-d20c-4ff4-8498-268d2cadd0ce"
},
{
"BlockType": "WORD",
"Confidence": 96.78011322021484,
"Text": "N/A,",
"Geometry": {
"BoundingBox": {
"Width": 0.047451164573431015,
"Height": 0.028561871498823166,
"Left": 0.6616346836090088,
"Top": 0.661875307559967
},
"Polygon": [
{
"X": 0.6616346836090088,
"Y": 0.661875307559967
},
{
"X": 0.7090858221054077,
"Y": 0.661875307559967
},
{
"X": 0.7090858221054077,
"Y": 0.6904371976852417
},
{
"X": 0.6616346836090088,
"Y": 0.6904371976852417
}
]
},
"Id": "bba4af42-51e4-405d-b515-8f339be6951d"
},
{
"BlockType": "WORD",
"Confidence": 99.9601821899414,
"Text": "current",
"Geometry": {
"BoundingBox": {
"Width": 0.07496311515569687,
"Height": 0.022987930104136467,
"Left": 0.7107576131820679,
"Top": 0.6635137796401978
},
"Polygon": [
{
"X": 0.7107576131820679,
"Y": 0.6635137796401978
},
{
"X": 0.7857207655906677,
"Y": 0.6635137796401978
},
{
"X": 0.7857207655906677,
"Y": 0.686501681804657
},
{
"X": 0.7107576131820679,
"Y": 0.686501681804657
}
]
},
"Id": "7818ad9f-8276-4601-93af-5d22f9dacff3"
},
{
"BlockType": "WORD",
"Confidence": 99.97209930419922,
"Text": "employer",
"Geometry": {
"BoundingBox": {
"Width": 0.09693116694688797,
"Height": 0.028156692162156105,
"Left": 0.6614667773246765,
"Top": 0.6965447664260864
},
"Polygon": [
{
"X": 0.6614667773246765,
"Y": 0.6965447664260864
},
{
"X": 0.7583979368209839,
"Y": 0.6965447664260864
},
{
"X": 0.7583979368209839,
"Y": 0.724701464176178
},
{
"X": 0.6614667773246765,
"Y": 0.724701464176178
}
]
},
"Id": "6258cb19-2911-48d9-a312-1f4defbff8c9"
},
{
"BlockType": "TABLE",
"Confidence": 79.17444610595703,
"Geometry": {
"BoundingBox": {
"Width": 0.8203125,
"Height": 0.232421875,
"Left": 0.05078125,
"Top": 0.546875
},
"Polygon": [
{
"X": 0.05078125,
"Y": 0.546875
},
{
"X": 0.87109375,
"Y": 0.546875
},
{
"X": 0.87109375,
"Y": 0.779296875
},
{
"X": 0.05078125,
"Y": 0.779296875
}
]
},
"Id": "89b94bba-7a88-4b9c-9e00-9c2912709bee",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"50ed059f-d191-462f-aecb-389ec43dd3f9",
"8db0a09c-39cf-4b99-a9f1-7d5da3af34a0",
"494affd1-cfd6-489f-90d2-e79a8d0b40f9",
"d1fc0fee-1d48-407e-a3a1-cd225322baf8",
"0b48c577-334d-4f43-bc8b-174b4a19b938",
"59b09cd4-3b4c-4c8b-bf62-463e185da879",
"52ea53cd-86b1-435c-89c7-21d5cec1450f",
"300267a5-1755-41f7-ab51-14a832c6114a",
"79920cff-db29-48c6-81fb-e6f735974d5a",
"2caf156c-d13f-4770-9ef0-efa356397d54",
"13c2dc0a-cf8b-4297-8c7d-cca8e49ad9a4",
"b1cb8e55-d3b2-4cb0-beb5-4f1485eddcc3",
"00b813be-ab08-4512-8a50-8af9c489ad69",
"7592b201-fff4-462a-a867-eb82fbcc5f35",
"c72ddfeb-e1e8-4df8-a1b0-fa44bf3c6da4",
"5e19332a-a98c-446a-8255-f15ccd86314a",
"14b2c565-0932-41d1-bc0c-18f626201f9e",
"84c7d78a-8c02-49cb-83f6-ebec3b4c3ceb",
"4c53c973-c454-4e30-8914-131c2ef30e71",
"05f10f41-aab1-4474-8c8a-2ab8895cca6b"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 70.63297271728516,
"RowIndex": 1,
"ColumnIndex": 1,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.119140625,
"Height": 0.046875,
"Left": 0.05078125,
"Top": 0.546875
},
"Polygon": [
{
"X": 0.05078125,
"Y": 0.546875
},
{
"X": 0.169921875,
"Y": 0.546875
},
{
"X": 0.169921875,
"Y": 0.59375
},
{
"X": 0.05078125,
"Y": 0.59375
}
]
},
"Id": "50ed059f-d191-462f-aecb-389ec43dd3f9",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"3896e8c5-498d-4fd5-8fa4-f46f7289b31b",
"a51e26ac-30bc-4490-bf32-eab3a0bfda80"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 70.27598571777344,
"RowIndex": 1,
"ColumnIndex": 2,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.12109375,
"Height": 0.046875,
"Left": 0.169921875,
"Top": 0.546875
},
"Polygon": [
{
"X": 0.169921875,
"Y": 0.546875
},
{
"X": 0.291015625,
"Y": 0.546875
},
{
"X": 0.291015625,
"Y": 0.59375
},
{
"X": 0.169921875,
"Y": 0.59375
}
]
},
"Id": "8db0a09c-39cf-4b99-a9f1-7d5da3af34a0",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"30ba3dea-ebcc-48c7-90a7-358a62324b0a",
"dff1fcaa-4ac3-46ba-9345-926a6d3eea5b"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 70.18751525878906,
"RowIndex": 1,
"ColumnIndex": 3,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.193359375,
"Height": 0.046875,
"Left": 0.291015625,
"Top": 0.546875
},
"Polygon": [
{
"X": 0.291015625,
"Y": 0.546875
},
{
"X": 0.484375,
"Y": 0.546875
},
{
"X": 0.484375,
"Y": 0.59375
},
{
"X": 0.291015625,
"Y": 0.59375
}
]
},
"Id": "494affd1-cfd6-489f-90d2-e79a8d0b40f9",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"e7e34961-66d1-41e8-a6eb-e3658af4f4f2",
"455c435e-8f96-4ab1-9bc0-c446fc81d88c"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 70.82475280761719,
"RowIndex": 1,
"ColumnIndex": 4,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.169921875,
"Height": 0.046875,
"Left": 0.484375,
"Top": 0.546875
},
"Polygon": [
{
"X": 0.484375,
"Y": 0.546875
},
{
"X": 0.654296875,
"Y": 0.546875
},
{
"X": 0.654296875,
"Y": 0.59375
},
{
"X": 0.484375,
"Y": 0.59375
}
]
},
"Id": "d1fc0fee-1d48-407e-a3a1-cd225322baf8",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"a0d2b508-1aee-485d-ad11-756ceb514a5d",
"c89b4fc2-fb66-4a59-9027-39e4f71f3bf0"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 70.80020904541016,
"RowIndex": 1,
"ColumnIndex": 5,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.216796875,
"Height": 0.046875,
"Left": 0.654296875,
"Top": 0.546875
},
"Polygon": [
{
"X": 0.654296875,
"Y": 0.546875
},
{
"X": 0.87109375,
"Y": 0.546875
},
{
"X": 0.87109375,
"Y": 0.59375
},
{
"X": 0.654296875,
"Y": 0.59375
}
]
},
"Id": "0b48c577-334d-4f43-bc8b-174b4a19b938",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"240c587b-69fd-4f6e-88fc-2d7c09925aaa",
"b57fb3a0-bea3-4fa9-acc4-a7bff1e216e1",
"78651135-03cb-4a46-b5de-940b656bf56d"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 73.24176025390625,
"RowIndex": 2,
"ColumnIndex": 1,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.119140625,
"Height": 0.05078125,
"Left": 0.05078125,
"Top": 0.59375
},
"Polygon": [
{
"X": 0.05078125,
"Y": 0.59375
},
{
"X": 0.169921875,
"Y": 0.59375
},
{
"X": 0.169921875,
"Y": 0.64453125
},
{
"X": 0.05078125,
"Y": 0.64453125
}
]
},
"Id": "59b09cd4-3b4c-4c8b-bf62-463e185da879",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"4f291f94-7035-4996-b2de-4dbfdfa1eb9e"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 72.87159729003906,
"RowIndex": 2,
"ColumnIndex": 2,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.12109375,
"Height": 0.05078125,
"Left": 0.169921875,
"Top": 0.59375
},
"Polygon": [
{
"X": 0.169921875,
"Y": 0.59375
},
{
"X": 0.291015625,
"Y": 0.59375
},
{
"X": 0.291015625,
"Y": 0.64453125
},
{
"X": 0.169921875,
"Y": 0.64453125
}
]
},
"Id": "52ea53cd-86b1-435c-89c7-21d5cec1450f",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"9ca8ef6d-8649-43e8-8799-6dd34b85859f"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 72.77986145019531,
"RowIndex": 2,
"ColumnIndex": 3,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.193359375,
"Height": 0.05078125,
"Left": 0.291015625,
"Top": 0.59375
},
"Polygon": [
{
"X": 0.291015625,
"Y": 0.59375
},
{
"X": 0.484375,
"Y": 0.59375
},
{
"X": 0.484375,
"Y": 0.64453125
},
{
"X": 0.291015625,
"Y": 0.64453125
}
]
},
"Id": "300267a5-1755-41f7-ab51-14a832c6114a",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"0095350b-97af-48bc-85b5-efdecdea3251",
"1625318f-d518-4bd5-a490-793f596276e3"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 73.44062805175781,
"RowIndex": 2,
"ColumnIndex": 4,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.169921875,
"Height": 0.05078125,
"Left": 0.484375,
"Top": 0.59375
},
"Polygon": [
{
"X": 0.484375,
"Y": 0.59375
},
{
"X": 0.654296875,
"Y": 0.59375
},
{
"X": 0.654296875,
"Y": 0.64453125
},
{
"X": 0.484375,
"Y": 0.64453125
}
]
},
"Id": "79920cff-db29-48c6-81fb-e6f735974d5a",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"c179c994-f9bd-46d0-a6f6-1c17fab15cae",
"b7fc42cb-2c9f-4c6c-9265-a239e3f2b917"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 73.41516876220703,
"RowIndex": 2,
"ColumnIndex": 5,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.216796875,
"Height": 0.05078125,
"Left": 0.654296875,
"Top": 0.59375
},
"Polygon": [
{
"X": 0.654296875,
"Y": 0.59375
},
{
"X": 0.87109375,
"Y": 0.59375
},
{
"X": 0.87109375,
"Y": 0.64453125
},
{
"X": 0.654296875,
"Y": 0.64453125
}
]
},
"Id": "2caf156c-d13f-4770-9ef0-efa356397d54",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"c4b71e7b-bc33-4e62-aa85-ed42aa542fce",
"4461a37f-b765-448e-9d92-90e16dd9bfef"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 73.18058013916016,
"RowIndex": 3,
"ColumnIndex": 1,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.119140625,
"Height": 0.0859375,
"Left": 0.05078125,
"Top": 0.64453125
},
"Polygon": [
{
"X": 0.05078125,
"Y": 0.64453125
},
{
"X": 0.169921875,
"Y": 0.64453125
},
{
"X": 0.169921875,
"Y": 0.73046875
},
{
"X": 0.05078125,
"Y": 0.73046875
}
]
},
"Id": "13c2dc0a-cf8b-4297-8c7d-cca8e49ad9a4",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"6feacb30-5aed-490f-be47-8db2afffcff5"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 72.81072998046875,
"RowIndex": 3,
"ColumnIndex": 2,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.12109375,
"Height": 0.0859375,
"Left": 0.169921875,
"Top": 0.64453125
},
"Polygon": [
{
"X": 0.169921875,
"Y": 0.64453125
},
{
"X": 0.291015625,
"Y": 0.64453125
},
{
"X": 0.291015625,
"Y": 0.73046875
},
{
"X": 0.169921875,
"Y": 0.73046875
}
]
},
"Id": "b1cb8e55-d3b2-4cb0-beb5-4f1485eddcc3",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"91e7cde3-c09a-46ec-82f2-87c69d05a6bd"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 72.71906280517578,
"RowIndex": 3,
"ColumnIndex": 3,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.193359375,
"Height": 0.0859375,
"Left": 0.291015625,
"Top": 0.64453125
},
"Polygon": [
{
"X": 0.291015625,
"Y": 0.64453125
},
{
"X": 0.484375,
"Y": 0.64453125
},
{
"X": 0.484375,
"Y": 0.73046875
},
{
"X": 0.291015625,
"Y": 0.73046875
}
]
},
"Id": "00b813be-ab08-4512-8a50-8af9c489ad69",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"ffa12e77-df45-4c9a-b7aa-b1cd5d0b800d",
"ec9a6502-3f7e-4708-85ad-913b61fd3e96"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 73.37928771972656,
"RowIndex": 3,
"ColumnIndex": 4,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.169921875,
"Height": 0.0859375,
"Left": 0.484375,
"Top": 0.64453125
},
"Polygon": [
{
"X": 0.484375,
"Y": 0.64453125
},
{
"X": 0.654296875,
"Y": 0.64453125
},
{
"X": 0.654296875,
"Y": 0.73046875
},
{
"X": 0.484375,
"Y": 0.73046875
}
]
},
"Id": "7592b201-fff4-462a-a867-eb82fbcc5f35",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"71a8ef9e-d20c-4ff4-8498-268d2cadd0ce"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 73.35385131835938,
"RowIndex": 3,
"ColumnIndex": 5,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.216796875,
"Height": 0.0859375,
"Left": 0.654296875,
"Top": 0.64453125
},
"Polygon": [
{
"X": 0.654296875,
"Y": 0.64453125
},
{
"X": 0.87109375,
"Y": 0.64453125
},
{
"X": 0.87109375,
"Y": 0.73046875
},
{
"X": 0.654296875,
"Y": 0.73046875
}
]
},
"Id": "c72ddfeb-e1e8-4df8-a1b0-fa44bf3c6da4",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"bba4af42-51e4-405d-b515-8f339be6951d",
"7818ad9f-8276-4601-93af-5d22f9dacff3",
"6258cb19-2911-48d9-a312-1f4defbff8c9"
]
}
]
},
{
"BlockType": "CELL",
"Confidence": 70.9896011352539,
"RowIndex": 4,
"ColumnIndex": 1,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.119140625,
"Height": 0.048828125,
"Left": 0.05078125,
"Top": 0.73046875
},
"Polygon": [
{
"X": 0.05078125,
"Y": 0.73046875
},
{
"X": 0.169921875,
"Y": 0.73046875
},
{
"X": 0.169921875,
"Y": 0.779296875
},
{
"X": 0.05078125,
"Y": 0.779296875
}
]
},
"Id": "5e19332a-a98c-446a-8255-f15ccd86314a"
},
{
"BlockType": "CELL",
"Confidence": 70.63082122802734,
"RowIndex": 4,
"ColumnIndex": 2,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.12109375,
"Height": 0.048828125,
"Left": 0.169921875,
"Top": 0.73046875
},
"Polygon": [
{
"X": 0.169921875,
"Y": 0.73046875
},
{
"X": 0.291015625,
"Y": 0.73046875
},
{
"X": 0.291015625,
"Y": 0.779296875
},
{
"X": 0.169921875,
"Y": 0.779296875
}
]
},
"Id": "14b2c565-0932-41d1-bc0c-18f626201f9e"
},
{
"BlockType": "CELL",
"Confidence": 70.54190826416016,
"RowIndex": 4,
"ColumnIndex": 3,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.193359375,
"Height": 0.048828125,
"Left": 0.291015625,
"Top": 0.73046875
},
"Polygon": [
{
"X": 0.291015625,
"Y": 0.73046875
},
{
"X": 0.484375,
"Y": 0.73046875
},
{
"X": 0.484375,
"Y": 0.779296875
},
{
"X": 0.291015625,
"Y": 0.779296875
}
]
},
"Id": "84c7d78a-8c02-49cb-83f6-ebec3b4c3ceb"
},
{
"BlockType": "CELL",
"Confidence": 71.18235778808594,
"RowIndex": 4,
"ColumnIndex": 4,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.169921875,
"Height": 0.048828125,
"Left": 0.484375,
"Top": 0.73046875
},
"Polygon": [
{
"X": 0.484375,
"Y": 0.73046875
},
{
"X": 0.654296875,
"Y": 0.73046875
},
{
"X": 0.654296875,
"Y": 0.779296875
},
{
"X": 0.484375,
"Y": 0.779296875
}
]
},
"Id": "4c53c973-c454-4e30-8914-131c2ef30e71"
},
{
"BlockType": "CELL",
"Confidence": 71.15768432617188,
"RowIndex": 4,
"ColumnIndex": 5,
"RowSpan": 1,
"ColumnSpan": 1,
"Geometry": {
"BoundingBox": {
"Width": 0.216796875,
"Height": 0.048828125,
"Left": 0.654296875,
"Top": 0.73046875
},
"Polygon": [
{
"X": 0.654296875,
"Y": 0.73046875
},
{
"X": 0.87109375,
"Y": 0.73046875
},
{
"X": 0.87109375,
"Y": 0.779296875
},
{
"X": 0.654296875,
"Y": 0.779296875
}
]
},
"Id": "05f10f41-aab1-4474-8c8a-2ab8895cca6b"
},
{
"BlockType": "KEY_VALUE_SET",
"Confidence": 58.267616271972656,
"Geometry": {
"BoundingBox": {
"Width": 0.15422335267066956,
"Height": 0.022832922637462616,
"Left": 0.05774741619825363,
"Top": 0.30453959107398987
},
"Polygon": [
{
"X": 0.05774741619825363,
"Y": 0.30453959107398987
},
{
"X": 0.21197077631950378,
"Y": 0.30453959107398987
},
{
"X": 0.21197077631950378,
"Y": 0.3273725211620331
},
{
"X": 0.05774741619825363,
"Y": 0.3273725211620331
}
]
},
"Id": "bab68112-8766-4af6-b75f-8c51ac4f006b",
"Relationships": [
{
"Type": "VALUE",
"Ids": [
"c56b8bf6-d7a1-4dfa-80da-f9ce68939122"
]
},
{
"Type": "CHILD",
"Ids": [
"44137f51-f5c5-4eed-8b29-39bdb033aba5",
"b3df9bf1-99be-41c1-97c4-26e4300d1a3e"
]
}
],
"EntityTypes": [
"KEY"
]
},
{
"BlockType": "KEY_VALUE_SET",
"Confidence": 58.267616271972656,
"Geometry": {
"BoundingBox": {
"Width": 0.0917820855975151,
"Height": 0.0207667276263237,
"Left": 0.21729521453380585,
"Top": 0.3049775958061218
},
"Polygon": [
{
"X": 0.21729521453380585,
"Y": 0.3049775958061218
},
{
"X": 0.30907729268074036,
"Y": 0.3049775958061218
},
{
"X": 0.30907729268074036,
"Y": 0.3257443308830261
},
{
"X": 0.21729521453380585,
"Y": 0.3257443308830261
}
]
},
"Id": "c56b8bf6-d7a1-4dfa-80da-f9ce68939122",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"b206a92e-c997-4027-a761-bf02e51ae80b"
]
}
],
"EntityTypes": [
"VALUE"
]
},
{
"BlockType": "KEY_VALUE_SET",
"Confidence": 55.96030807495117,
"Geometry": {
"BoundingBox": {
"Width": 0.10775703936815262,
"Height": 0.023753482848405838,
"Left": 0.056330401450395584,
"Top": 0.24448059499263763
},
"Polygon": [
{
"X": 0.056330401450395584,
"Y": 0.24448059499263763
},
{
"X": 0.1640874445438385,
"Y": 0.24448059499263763
},
{
"X": 0.1640874445438385,
"Y": 0.2682340741157532
},
{
"X": 0.056330401450395584,
"Y": 0.2682340741157532
}
]
},
"Id": "9c39a004-05d2-40c4-a154-f118d3d896ea",
"Relationships": [
{
"Type": "VALUE",
"Ids": [
"f043ae13-d984-4a4a-8a5d-a5871e17d61a"
]
},
{
"Type": "CHILD",
"Ids": [
"b97d5d44-ec65-47ee-8f5f-5d7fb655859c",
"1178463a-9455-46cb-bc51-89fba530a31c"
]
}
],
"EntityTypes": [
"KEY"
]
},
{
"BlockType": "KEY_VALUE_SET",
"Confidence": 55.96030807495117,
"Geometry": {
"BoundingBox": {
"Width": 0.08763226866722107,
"Height": 0.019203105941414833,
"Left": 0.16728997230529785,
"Top": 0.24661003053188324
},
"Polygon": [
{
"X": 0.16728997230529785,
"Y": 0.24661003053188324
},
{
"X": 0.2549222409725189,
"Y": 0.24661003053188324
},
{
"X": 0.2549222409725189,
"Y": 0.2658131420612335
},
{
"X": 0.16728997230529785,
"Y": 0.2658131420612335
}
]
},
"Id": "f043ae13-d984-4a4a-8a5d-a5871e17d61a",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"903deb0d-9ec2-4a8f-a840-861ec5a259f5",
"636659d7-5766-4ba8-8be3-f76b455cedff"
]
}
],
"EntityTypes": [
"VALUE"
]
},
{
"BlockType": "KEY_VALUE_SET",
"Confidence": 50.144649505615234,
"Geometry": {
"BoundingBox": {
"Width": 0.14891594648361206,
"Height": 0.02293608896434307,
"Left": 0.058106888085603714,
"Top": 0.36443081498146057
},
"Polygon": [
{
"X": 0.058106888085603714,
"Y": 0.36443081498146057
},
{
"X": 0.20702284574508667,
"Y": 0.36443081498146057
},
{
"X": 0.20702284574508667,
"Y": 0.38736692070961
},
{
"X": 0.058106888085603714,
"Y": 0.38736692070961
}
]
},
"Id": "25a2774d-c9ea-4360-ba11-07de8db1a885",
"Relationships": [
{
"Type": "VALUE",
"Ids": [
"be90b448-881a-408b-9d60-721e3df7155e"
]
},
{
"Type": "CHILD",
"Ids": [
"30de27e6-e1cd-48c8-bb23-bb760d67665e",
"46021d5d-7305-4a1a-9f0d-5c380710cb16"
]
}
],
"EntityTypes": [
"KEY"
]
},
{
"BlockType": "KEY_VALUE_SET",
"Confidence": 50.144649505615234,
"Geometry": {
"BoundingBox": {
"Width": 0.30645033717155457,
"Height": 0.024564553052186966,
"Left": 0.20775282382965088,
"Top": 0.36305052042007446
},
"Polygon": [
{
"X": 0.20775282382965088,
"Y": 0.36305052042007446
},
{
"X": 0.5142031908035278,
"Y": 0.36305052042007446
},
{
"X": 0.5142031908035278,
"Y": 0.3876150846481323
},
{
"X": 0.20775282382965088,
"Y": 0.3876150846481323
}
]
},
"Id": "be90b448-881a-408b-9d60-721e3df7155e",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"c460cfa6-c214-49fb-8190-15ca0604bfff",
"6496c2db-e4d6-4c69-b8f1-2eaa57e02c03",
"ba8ecd92-8c0f-4b93-b665-df611f73b73e",
"13debf03-f2fb-4a0e-954c-f51d042d507b",
"959b419a-160c-42bb-9465-e2a96a85bbc1",
"e293ff66-9eef-4c81-a438-2e00d4da4ea6"
]
}
],
"EntityTypes": [
"VALUE"
]
},
{
"BlockType": "KEY_VALUE_SET",
"Confidence": 48.39551544189453,
"Geometry": {
"BoundingBox": {
"Width": 0.16515828669071198,
"Height": 0.026320507749915123,
"Left": 0.056039731949567795,
"Top": 0.42113441228866577
},
"Polygon": [
{
"X": 0.056039731949567795,
"Y": 0.42113441228866577
},
{
"X": 0.22119802236557007,
"Y": 0.42113441228866577
},
{
"X": 0.22119802236557007,
"Y": 0.44745492935180664
},
{
"X": 0.056039731949567795,
"Y": 0.44745492935180664
}
]
},
"Id": "bc89f8ea-6422-4928-8ae0-a96c5d5d3367",
"Relationships": [
{
"Type": "VALUE",
"Ids": [
"3ccc1bfb-cc81-47d9-a90a-e20c17c6b35f"
]
},
{
"Type": "CHILD",
"Ids": [
"a1cc355c-23c4-4d26-bebf-296b6faa0953",
"8b6e9bbb-cefb-4e57-914d-f6755d97c326"
]
}
],
"EntityTypes": [
"KEY"
]
},
{
"BlockType": "KEY_VALUE_SET",
"Confidence": 48.39551544189453,
"Geometry": {
"BoundingBox": {
"Width": 0.21646256744861603,
"Height": 0.02040887251496315,
"Left": 0.22968634963035583,
"Top": 0.42372289299964905
},
"Polygon": [
{
"X": 0.22968634963035583,
"Y": 0.42372289299964905
},
{
"X": 0.44614890217781067,
"Y": 0.42372289299964905
},
{
"X": 0.44614890217781067,
"Y": 0.4441317617893219
},
{
"X": 0.22968634963035583,
"Y": 0.4441317617893219
}
]
},
"Id": "3ccc1bfb-cc81-47d9-a90a-e20c17c6b35f",
"Relationships": [
{
"Type": "CHILD",
"Ids": [
"70a93a6e-558d-4a40-a706-def93b549c8a",
"748322af-51a1-48a1-b1cd-bd15ee315d72",
"09cf409f-9118-4a98-bf8d-88b0eb057de5",
"8a8a16c7-5ac7-430d-8793-5acb6098d43f"
]
}
],
"EntityTypes": [
"VALUE"
]
}
]
}
key value
Phone Number: 555-0100
Full Name: Jane Doe
Home Address: 123 Any Street. Any Town, USA
Mailing Address: same as home address
Employment Application Applicant Information Full Name: Jane Doe Phone Number: 555-0100 Home Address: 123 Any Street. Any Town, USA Mailing Address: same as home address Previous Employment History Start Date End Date Employer Name Position Held Reason for leaving 1/15/2009 6/30/2013 Any Company Head Baker Family relocated 8/15/2013 present Example Corp. Baker N/A, current employer
Start Date End Date Employer Name Position Held Reason for leaving
1/15/2009 6/30/2013 Any Company Head Baker Family relocated
8/15/2013 present Example Corp. Baker N/A, current employer
@dannguyen
Copy link
Author

using the comments section as a place to copy-paste images so I can get urls to embed in the readme:

screenshot of the Textract features page:
image

@dannguyen
Copy link
Author

another image to embed: the Textract demo's Tables preview:

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment