{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-schema/openapi.yml-geometry-schema.json", "title": "Geometry", "description": "
Information about the location of items on a document page.
For additional information, see Geometry in the Amazon Textract API reference.
", "type": "object", "properties": { "BoundingBox": { "allOf": [ { "$ref": "#/components/schemas/BoundingBox" }, { "description": "An axis-aligned coarse representation of the location of the recognized item on the document page." } ] }, "Polygon": { "allOf": [ { "$ref": "#/components/schemas/Polygon" }, { "description": "Within the bounding box, a fine-grained polygon around the recognized item." } ] } } }