{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/line", "title": "line", "type": "object", "description": "A content line object consisting of an adjacent sequence of content elements, such as words and selection marks.", "properties": { "text": { "type": "string" }, "spans": { "type": "array", "description": "An array of spans that represent detected objects and its bounding box information.", "items": { "$ref": "#/components/schemas/span" } } }, "required": [ "text", "spans" ] }