Microsoft Azure · Schema

line

A content line object consisting of an adjacent sequence of content elements, such as words and selection marks.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
text string
spans array An array of spans that represent detected objects and its bounding box information.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-line-schema.json Raw ↑
{
  "$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"
  ]
}