googleapis / python-documentai

This library has moved to https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-documentai
Apache License 2.0
80 stars 33 forks source link

JSON Response difference between Node Client Library and try out feature of document AI #75

Closed tanejajatin1 closed 3 years ago

tanejajatin1 commented 3 years ago

I am trying to call Document AI v1beta2 inbuilt client library to parse table inside the document. As a result I am getting the JSON result object but it doesn't have the table headers for all the table present inside the document. It shows the header for the first table only and then all the other tables data comes under body rows.

I also tried the try out function from the official documentation of Document AI it gives back the right results. It gives the data as required.

Can anyone please assist on this?

munkhuushmgl commented 3 years ago

@tanejajatin1 I will help you

munkhuushmgl commented 3 years ago

@tanejajatin1 iF it is possible, Can you share your document (please edit sensitive data on the document or add dummy values) ? OR Can u share screenshot of what is expected and what is actual value?

tanejajatin1 commented 3 years ago

Hey, I created a sample document for further troubleshooting it. I created two tables inside it just to test it out. When I am tried calling document AI API from the try out function it gives us the JSON response with two headerrows, which is ideally true as there are two tables so it is the right one.

The same document gives different JSON response when called from inbuilt library of NodeJs for Document AI. It only gives one headerrows instead of two.

Please refer the document I created with two tables below

SampleDocForDocumentAI.pdf

munkhuushmgl commented 3 years ago

@tanejajatin1 Looks like python does not have sample that demonstrates batch table sample which exists in node repo https://github.com/googleapis/nodejs-document-ai/blob/master/samples/batch_parse_table.js

if you are using batch-process-document.v1beta3.js and batch_process_documents_sample_v1beta3.py, they produce same results (tested and confirmed). Currently, node samples has batch_process_table.js but python does not have it.

munkhuushmgl commented 3 years ago

@tanejajatin1 I just added python sample for you

https://github.com/googleapis/python-documentai/pull/76

With that note, I would like to close this issue, Please let me know if this issue has been resolved for you

Thanks

tanejajatin1 commented 3 years ago

Thanks for your response. But I think you misunderstood the requirement. Why are you recommending Batch process for a single document? We are just passing a single document which has multiple tables in it. It should ideally give back the table data present in the document. Also the point is it is able to identify the data inside another table as well. The only thing where issue is, it is not able to get the headers of second table inside headerrow object. But the data is present in rowobject. I hope I am making some sense now.

munkhuushmgl commented 3 years ago

u can still process single document using batch_process_document.

Currently, we do not have python sample that processes table.

However, if you use this batch sample, it actually give you back table data present the document u wish for in gs://bucket

I will discuss with the team to deliver these v1beta2 samples.

munkhuushmgl commented 3 years ago

As you can see, I used this batch sample to get the following output (which extracted two table headers from your given input)

{"uri":"gs://document-ai-python/mike/SampleDocForDocumentAI.pdf","mimeType":"application/pdf","text":"Table 1\nThis is a sample document.\nTable 2\nColumn1 Column2 Column 3\nValue Value Value\nColumn6 Column7 Column8 Column9 Column10\n1 23 fdw dfd fd\ndfdf dgd dfd 45678\n67 xcd xcvc\n","pages":[{"pageNumber":1,"dimension":{"width":595,"height":841,"unit":"points"},"layout":{"textAnchor":{"textSegments":[{"endIndex":"174"}]},"confidence":1,"boundingPoly":{"vertices":[{},{"x":595},{"x":595,"y":841},{"y":841}],"normalizedVertices":[{},{"x":1},{"x":1,"y":1},{"y":1}]},"orientation":"PAGE_UP"},"blocks":[{"layout":{"textAnchor":{"textSegments":[{"endIndex":"8"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.1117717},{"x":0.17478992,"y":0.1117717},{"x":0.17478992,"y":0.12366231},{"x":0.1210084,"y":0.12366231}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"8","endIndex":"35"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.19857313},{"x":0.3226891,"y":0.19857313},{"x":0.3226891,"y":0.21046373},{"x":0.1210084,"y":0.21046373}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"35","endIndex":"43"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.25208086},{"x":0.17478992,"y":0.25208086},{"x":0.17478992,"y":0.26397145},{"x":0.1210084,"y":0.26397145}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"43","endIndex":"86"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.1391201},{"x":0.7058824,"y":0.1391201},{"x":0.7058824,"y":0.16765755},{"x":0.13109244,"y":0.16765755}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"86","endIndex":"174"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.27942926},{"x":0.8134454,"y":0.27942926},{"x":0.8134454,"y":0.3412604},{"x":0.13109244,"y":0.3412604}]},"orientation":"PAGE_UP"}}],"paragraphs":[{"layout":{"textAnchor":{"textSegments":[{"endIndex":"8"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.1117717},{"x":0.17478992,"y":0.1117717},{"x":0.17478992,"y":0.12366231},{"x":0.1210084,"y":0.12366231}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"8","endIndex":"35"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.19857313},{"x":0.3226891,"y":0.19857313},{"x":0.3226891,"y":0.21046373},{"x":0.1210084,"y":0.21046373}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"35","endIndex":"43"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.25208086},{"x":0.17478992,"y":0.25208086},{"x":0.17478992,"y":0.26397145},{"x":0.1210084,"y":0.26397145}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"43","endIndex":"86"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.1391201},{"x":0.7058824,"y":0.1391201},{"x":0.7058824,"y":0.16765755},{"x":0.13109244,"y":0.16765755}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"86","endIndex":"174"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.27942926},{"x":0.8134454,"y":0.27942926},{"x":0.8134454,"y":0.3412604},{"x":0.13109244,"y":0.3412604}]},"orientation":"PAGE_UP"}}],"lines":[{"layout":{"textAnchor":{"textSegments":[{"endIndex":"8"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.1117717},{"x":0.17478992,"y":0.1117717},{"x":0.17478992,"y":0.12366231},{"x":0.1210084,"y":0.12366231}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"8","endIndex":"35"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.19857313},{"x":0.3226891,"y":0.19857313},{"x":0.3226891,"y":0.21046373},{"x":0.1210084,"y":0.21046373}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"35","endIndex":"43"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.25208086},{"x":0.17478992,"y":0.25208086},{"x":0.17478992,"y":0.26397145},{"x":0.1210084,"y":0.26397145}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"43","endIndex":"68"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.1391201},{"x":0.7058824,"y":0.1391201},{"x":0.7058824,"y":0.1510107},{"x":0.13109244,"y":0.1510107}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"68","endIndex":"86"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.15576695},{"x":0.67731094,"y":0.15576695},{"x":0.67731094,"y":0.16765755},{"x":0.13109244,"y":0.16765755}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"86","endIndex":"127"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.27942926},{"x":0.8134454,"y":0.27942926},{"x":0.8134454,"y":0.29131985},{"x":0.13109244,"y":0.29131985}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"127","endIndex":"143"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.2960761},{"x":0.7512605,"y":0.2960761},{"x":0.7512605,"y":0.3079667},{"x":0.13109244,"y":0.3079667}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"143","endIndex":"162"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.31272295},{"x":0.6319328,"y":0.31272295},{"x":0.6319328,"y":0.32461354},{"x":0.13109244,"y":0.32461354}]},"orientation":"PAGE_UP"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"162","endIndex":"174"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.32936978},{"x":0.76806724,"y":0.32936978},{"x":0.76806724,"y":0.3412604},{"x":0.13109244,"y":0.3412604}]},"orientation":"PAGE_UP"}}],"tokens":[{"layout":{"textAnchor":{"textSegments":[{"endIndex":"6"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.1117717},{"x":0.16134454,"y":0.1117717},{"x":0.16134454,"y":0.12366231},{"x":0.1210084,"y":0.12366231}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"6","endIndex":"8"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.16638656,"y":0.1117717},{"x":0.17478992,"y":0.1117717},{"x":0.17478992,"y":0.12366231},{"x":0.16638656,"y":0.12366231}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"WIDE_SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"8","endIndex":"13"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.19857313},{"x":0.14957984,"y":0.19857313},{"x":0.14957984,"y":0.21046373},{"x":0.1210084,"y":0.21046373}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"13","endIndex":"16"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.15630253,"y":0.19857313},{"x":0.16470589,"y":0.19857313},{"x":0.16470589,"y":0.21046373},{"x":0.15630253,"y":0.21046373}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"16","endIndex":"18"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.17142858,"y":0.19857313},{"x":0.17815126,"y":0.19857313},{"x":0.17815126,"y":0.21046373},{"x":0.17142858,"y":0.21046373}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"18","endIndex":"25"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.18487395,"y":0.19857313},{"x":0.23697479,"y":0.19857313},{"x":0.23697479,"y":0.21046373},{"x":0.18487395,"y":0.21046373}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"25","endIndex":"35"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.2420168,"y":0.19857313},{"x":0.3226891,"y":0.19857313},{"x":0.3226891,"y":0.21046373},{"x":0.2420168,"y":0.21046373}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"WIDE_SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"35","endIndex":"41"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.1210084,"y":0.25208086},{"x":0.16134454,"y":0.25208086},{"x":0.16134454,"y":0.26397145},{"x":0.1210084,"y":0.26397145}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"41","endIndex":"43"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.16638656,"y":0.25208086},{"x":0.17478992,"y":0.25208086},{"x":0.17478992,"y":0.26397145},{"x":0.16638656,"y":0.26397145}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"WIDE_SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"43","endIndex":"51"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.1391201},{"x":0.19663866,"y":0.1391201},{"x":0.19663866,"y":0.1510107},{"x":0.13109244,"y":0.1510107}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"51","endIndex":"59"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.38319328,"y":0.1391201},{"x":0.4487395,"y":0.1391201},{"x":0.4487395,"y":0.1510107},{"x":0.38319328,"y":0.1510107}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"59","endIndex":"66"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.63529414,"y":0.1391201},{"x":0.692437,"y":0.1391201},{"x":0.692437,"y":0.1510107},{"x":0.63529414,"y":0.1510107}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"66","endIndex":"68"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.697479,"y":0.1391201},{"x":0.7058824,"y":0.1391201},{"x":0.7058824,"y":0.1510107},{"x":0.697479,"y":0.1510107}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"WIDE_SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"68","endIndex":"74"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.15576695},{"x":0.17142858,"y":0.15576695},{"x":0.17142858,"y":0.16765755},{"x":0.13109244,"y":0.16765755}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"74","endIndex":"80"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.38319328,"y":0.15576695},{"x":0.4252101,"y":0.15576695},{"x":0.4252101,"y":0.16765755},{"x":0.38319328,"y":0.16765755}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"80","endIndex":"86"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.63529414,"y":0.15576695},{"x":0.67731094,"y":0.15576695},{"x":0.67731094,"y":0.16765755},{"x":0.63529414,"y":0.16765755}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"WIDE_SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"86","endIndex":"94"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.27942926},{"x":0.19663866,"y":0.27942926},{"x":0.19663866,"y":0.29131985},{"x":0.13109244,"y":0.29131985}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"94","endIndex":"102"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.28235295,"y":0.27942926},{"x":0.34789917,"y":0.27942926},{"x":0.34789917,"y":0.29131985},{"x":0.28235295,"y":0.29131985}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"102","endIndex":"110"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.43361345,"y":0.27942926},{"x":0.50084037,"y":0.27942926},{"x":0.50084037,"y":0.29131985},{"x":0.43361345,"y":0.29131985}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"110","endIndex":"118"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.584874,"y":0.27942926},{"x":0.65210086,"y":0.27942926},{"x":0.65210086,"y":0.29131985},{"x":0.584874,"y":0.29131985}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"118","endIndex":"127"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.73613447,"y":0.27942926},{"x":0.8134454,"y":0.27942926},{"x":0.8134454,"y":0.29131985},{"x":0.73613447,"y":0.29131985}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"WIDE_SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"127","endIndex":"129"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.2960761},{"x":0.1394958,"y":0.2960761},{"x":0.1394958,"y":0.3079667},{"x":0.13109244,"y":0.3079667}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"129","endIndex":"132"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.28235295,"y":0.2960761},{"x":0.29915968,"y":0.2960761},{"x":0.29915968,"y":0.3079667},{"x":0.28235295,"y":0.3079667}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"132","endIndex":"136"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.43361345,"y":0.2960761},{"x":0.4605042,"y":0.2960761},{"x":0.4605042,"y":0.3079667},{"x":0.43361345,"y":0.3079667}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"136","endIndex":"140"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.584874,"y":0.2960761},{"x":0.6084034,"y":0.2960761},{"x":0.6084034,"y":0.3079667},{"x":0.584874,"y":0.3079667}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"140","endIndex":"143"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.73613447,"y":0.2960761},{"x":0.7512605,"y":0.2960761},{"x":0.7512605,"y":0.3079667},{"x":0.73613447,"y":0.3079667}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"WIDE_SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"143","endIndex":"148"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.31272295},{"x":0.15966387,"y":0.31272295},{"x":0.15966387,"y":0.32461354},{"x":0.13109244,"y":0.32461354}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"148","endIndex":"152"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.28235295,"y":0.31272295},{"x":0.3092437,"y":0.31272295},{"x":0.3092437,"y":0.32461354},{"x":0.28235295,"y":0.32461354}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"152","endIndex":"156"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.43361345,"y":0.31272295},{"x":0.45714286,"y":0.31272295},{"x":0.45714286,"y":0.32461354},{"x":0.43361345,"y":0.32461354}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"156","endIndex":"162"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.584874,"y":0.31272295},{"x":0.6319328,"y":0.31272295},{"x":0.6319328,"y":0.32461354},{"x":0.584874,"y":0.32461354}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"WIDE_SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"162","endIndex":"165"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.13109244,"y":0.32936978},{"x":0.14789917,"y":0.32936978},{"x":0.14789917,"y":0.3412604},{"x":0.13109244,"y":0.3412604}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"165","endIndex":"169"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.584874,"y":0.32936978},{"x":0.61008406,"y":0.32936978},{"x":0.61008406,"y":0.3412604},{"x":0.584874,"y":0.3412604}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"SPACE"}},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"169","endIndex":"174"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{"x":0.73613447,"y":0.32936978},{"x":0.76806724,"y":0.32936978},{"x":0.76806724,"y":0.3412604},{"x":0.73613447,"y":0.3412604}]},"orientation":"PAGE_UP"},"detectedBreak":{"type":"WIDE_SPACE"}}],"tables":[{"layout":{"textAnchor":{"textSegments":[{"endIndex":"8"},{"startIndex":"43","endIndex":"86"},{"startIndex":"8","endIndex":"25"},{"startIndex":"35","endIndex":"43"},{"startIndex":"25","endIndex":"35"},{"startIndex":"86","endIndex":"174"}]},"confidence":1,"boundingPoly":{"normalizedVertices":[{},{"x":1},{"x":1,"y":1},{"y":1}]},"orientation":"PAGE_UP"},"headerRows":[{"cells":[{"layout":{"textAnchor":{"textSegments":[{"endIndex":"8"}]},"boundingPoly":{"normalizedVertices":[{},{"x":0.27358258},{"x":0.27358258,"y":0.13835156},{"y":0.13835156}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.27358258},{"x":0.42542288},{"x":0.42542288,"y":0.13835156},{"x":0.27358258,"y":0.13835156}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.42542288},{"x":0.5725107},{"x":0.5725107,"y":0.13835156},{"x":0.42542288,"y":0.13835156}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.5725107},{"x":0.7241214},{"x":0.7241214,"y":0.13835156},{"x":0.5725107,"y":0.13835156}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.7241214},{"x":1},{"x":1,"y":0.13835156},{"x":0.7241214,"y":0.13835156}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1}]}],"bodyRows":[{"cells":[{"layout":{"textAnchor":{"textSegments":[{"startIndex":"43","endIndex":"51"}]},"boundingPoly":{"normalizedVertices":[{"y":0.13835156},{"x":0.27358258,"y":0.13835156},{"x":0.27358258,"y":0.1549442},{"y":0.1549442}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"51","endIndex":"59"}]},"boundingPoly":{"normalizedVertices":[{"x":0.27358258,"y":0.13835156},{"x":0.42542288,"y":0.13835156},{"x":0.42542288,"y":0.1549442},{"x":0.27358258,"y":0.1549442}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.42542288,"y":0.13835156},{"x":0.5725107,"y":0.13835156},{"x":0.5725107,"y":0.1549442},{"x":0.42542288,"y":0.1549442}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"59","endIndex":"68"}]},"boundingPoly":{"normalizedVertices":[{"x":0.5725107,"y":0.13835156},{"x":0.7241214,"y":0.13835156},{"x":0.7241214,"y":0.1549442},{"x":0.5725107,"y":0.1549442}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.7241214,"y":0.13835156},{"x":1,"y":0.13835156},{"x":1,"y":0.1549442},{"x":0.7241214,"y":0.1549442}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1}]},{"cells":[{"layout":{"textAnchor":{"textSegments":[{"startIndex":"68","endIndex":"74"}]},"boundingPoly":{"normalizedVertices":[{"y":0.1549442},{"x":0.27358258,"y":0.1549442},{"x":0.27358258,"y":0.17157274},{"y":0.17157274}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"74","endIndex":"80"}]},"boundingPoly":{"normalizedVertices":[{"x":0.27358258,"y":0.1549442},{"x":0.42542288,"y":0.1549442},{"x":0.42542288,"y":0.17157274},{"x":0.27358258,"y":0.17157274}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.42542288,"y":0.1549442},{"x":0.5725107,"y":0.1549442},{"x":0.5725107,"y":0.17157274},{"x":0.42542288,"y":0.17157274}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"80","endIndex":"86"}]},"boundingPoly":{"normalizedVertices":[{"x":0.5725107,"y":0.1549442},{"x":0.7241214,"y":0.1549442},{"x":0.7241214,"y":0.17157274},{"x":0.5725107,"y":0.17157274}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.7241214,"y":0.1549442},{"x":1,"y":0.1549442},{"x":1,"y":0.17157274},{"x":0.7241214,"y":0.17157274}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1}]},{"cells":[{"layout":{"textAnchor":{"textSegments":[{"startIndex":"8","endIndex":"25"},{"startIndex":"35","endIndex":"43"}]},"boundingPoly":{"normalizedVertices":[{"y":0.17157274},{"x":0.27358258,"y":0.17157274},{"x":0.27358258,"y":0.27880573},{"y":0.27880573}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"25","endIndex":"35"}]},"boundingPoly":{"normalizedVertices":[{"x":0.27358258,"y":0.17157274},{"x":0.42542288,"y":0.17157274},{"x":0.42542288,"y":0.27880573},{"x":0.27358258,"y":0.27880573}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.42542288,"y":0.17157274},{"x":0.5725107,"y":0.17157274},{"x":0.5725107,"y":0.27880573},{"x":0.42542288,"y":0.27880573}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.5725107,"y":0.17157274},{"x":0.7241214,"y":0.17157274},{"x":0.7241214,"y":0.27880573},{"x":0.5725107,"y":0.27880573}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.7241214,"y":0.17157274},{"x":1,"y":0.17157274},{"x":1,"y":0.27880573},{"x":0.7241214,"y":0.27880573}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1}]},{"cells":[{"layout":{"textAnchor":{"textSegments":[{"startIndex":"86","endIndex":"94"}]},"boundingPoly":{"normalizedVertices":[{"y":0.27880573},{"x":0.27358258,"y":0.27880573},{"x":0.27358258,"y":0.2953331},{"y":0.2953331}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"94","endIndex":"102"}]},"boundingPoly":{"normalizedVertices":[{"x":0.27358258,"y":0.27880573},{"x":0.42542288,"y":0.27880573},{"x":0.42542288,"y":0.2953331},{"x":0.27358258,"y":0.2953331}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"102","endIndex":"110"}]},"boundingPoly":{"normalizedVertices":[{"x":0.42542288,"y":0.27880573},{"x":0.5725107,"y":0.27880573},{"x":0.5725107,"y":0.2953331},{"x":0.42542288,"y":0.2953331}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"110","endIndex":"118"}]},"boundingPoly":{"normalizedVertices":[{"x":0.5725107,"y":0.27880573},{"x":0.7241214,"y":0.27880573},{"x":0.7241214,"y":0.2953331},{"x":0.5725107,"y":0.2953331}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"118","endIndex":"127"}]},"boundingPoly":{"normalizedVertices":[{"x":0.7241214,"y":0.27880573},{"x":1,"y":0.27880573},{"x":1,"y":0.2953331},{"x":0.7241214,"y":0.2953331}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1}]},{"cells":[{"layout":{"textAnchor":{"textSegments":[{"startIndex":"127","endIndex":"129"}]},"boundingPoly":{"normalizedVertices":[{"y":0.2953331},{"x":0.27358258,"y":0.2953331},{"x":0.27358258,"y":0.3123567},{"y":0.3123567}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"129","endIndex":"132"}]},"boundingPoly":{"normalizedVertices":[{"x":0.27358258,"y":0.2953331},{"x":0.42542288,"y":0.2953331},{"x":0.42542288,"y":0.3123567},{"x":0.27358258,"y":0.3123567}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"132","endIndex":"136"}]},"boundingPoly":{"normalizedVertices":[{"x":0.42542288,"y":0.2953331},{"x":0.5725107,"y":0.2953331},{"x":0.5725107,"y":0.3123567},{"x":0.42542288,"y":0.3123567}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"136","endIndex":"140"}]},"boundingPoly":{"normalizedVertices":[{"x":0.5725107,"y":0.2953331},{"x":0.7241214,"y":0.2953331},{"x":0.7241214,"y":0.3123567},{"x":0.5725107,"y":0.3123567}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"140","endIndex":"143"}]},"boundingPoly":{"normalizedVertices":[{"x":0.7241214,"y":0.2953331},{"x":1,"y":0.2953331},{"x":1,"y":0.3123567},{"x":0.7241214,"y":0.3123567}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1}]},{"cells":[{"layout":{"textAnchor":{"textSegments":[{"startIndex":"143","endIndex":"148"}]},"boundingPoly":{"normalizedVertices":[{"y":0.3123567},{"x":0.27358258,"y":0.3123567},{"x":0.27358258,"y":0.32935977},{"y":0.32935977}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"148","endIndex":"152"}]},"boundingPoly":{"normalizedVertices":[{"x":0.27358258,"y":0.3123567},{"x":0.42542288,"y":0.3123567},{"x":0.42542288,"y":0.32935977},{"x":0.27358258,"y":0.32935977}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"152","endIndex":"156"}]},"boundingPoly":{"normalizedVertices":[{"x":0.42542288,"y":0.3123567},{"x":0.5725107,"y":0.3123567},{"x":0.5725107,"y":0.32935977},{"x":0.42542288,"y":0.32935977}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"156","endIndex":"162"}]},"boundingPoly":{"normalizedVertices":[{"x":0.5725107,"y":0.3123567},{"x":0.7241214,"y":0.3123567},{"x":0.7241214,"y":0.32935977},{"x":0.5725107,"y":0.32935977}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.7241214,"y":0.3123567},{"x":1,"y":0.3123567},{"x":1,"y":0.32935977},{"x":0.7241214,"y":0.32935977}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1}]},{"cells":[{"layout":{"textAnchor":{"textSegments":[{"startIndex":"162","endIndex":"165"}]},"boundingPoly":{"normalizedVertices":[{"y":0.32935977},{"x":0.27358258,"y":0.32935977},{"x":0.27358258,"y":1},{"y":1}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.27358258,"y":0.32935977},{"x":0.42542288,"y":0.32935977},{"x":0.42542288,"y":1},{"x":0.27358258,"y":1}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{},"boundingPoly":{"normalizedVertices":[{"x":0.42542288,"y":0.32935977},{"x":0.5725107,"y":0.32935977},{"x":0.5725107,"y":1},{"x":0.42542288,"y":1}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"165","endIndex":"169"}]},"boundingPoly":{"normalizedVertices":[{"x":0.5725107,"y":0.32935977},{"x":0.7241214,"y":0.32935977},{"x":0.7241214,"y":1},{"x":0.5725107,"y":1}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1},{"layout":{"textAnchor":{"textSegments":[{"startIndex":"169","endIndex":"174"}]},"boundingPoly":{"normalizedVertices":[{"x":0.7241214,"y":0.32935977},{"x":1,"y":0.32935977},{"x":1,"y":1},{"x":0.7241214,"y":1}]},"orientation":"PAGE_UP"},"rowSpan":1,"colSpan":1}]}]}]}],"shardInfo":{"shardCount":"1"}}
munkhuushmgl commented 3 years ago

Due to inactivity, I am closing this issue. Feel free to reopen this issue.