{ "$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-point-schema.json", "title": "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" } ] } } }