BoundingBox

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
minX integer Minimum X coordinate.
minY integer Minimum Y coordinate.
maxX integer Maximum X coordinate.
maxY integer Maximum Y coordinate.
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-boundingbox-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BoundingBox",
  "title": "BoundingBox",
  "type": "object",
  "properties": {
    "minX": {
      "type": "integer",
      "description": "Minimum X coordinate."
    },
    "minY": {
      "type": "integer",
      "description": "Minimum Y coordinate."
    },
    "maxX": {
      "type": "integer",
      "description": "Maximum X coordinate."
    },
    "maxY": {
      "type": "integer",
      "description": "Maximum Y coordinate."
    }
  }
}