{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-structure/openapi.yml-point-structure.json", "name": "Point", "description": "
The X and Y coordinates of a point on a document page.
For additional information, see Point in the Amazon Textract API reference.
", "type": "object", "properties": { "X": { "allOf": [ { "$ref": "#/components/schemas/Float" }, { "description": "The value of the X coordinate for a point on a polygon" } ] }, "Y": { "allOf": [ { "$ref": "#/components/schemas/Float" }, { "description": "The value of the Y coordinate for a point on a polygon" } ] } } }