Microsoft Azure · Schema

enhancement

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
grounding object The grounding enhancement that returns the bounding box of the objects detected in the image.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-enhancement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/enhancement",
  "title": "enhancement",
  "type": "object",
  "properties": {
    "grounding": {
      "type": "object",
      "description": "The grounding enhancement that returns the bounding box of the objects detected in the image.",
      "properties": {
        "lines": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/line"
          }
        }
      },
      "required": [
        "lines"
      ]
    }
  }
}