DetectionResult

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
label string Detected object label.
probability number Confidence score.
boundingBox object
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-detectionresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DetectionResult",
  "title": "DetectionResult",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "description": "Detected object label."
    },
    "probability": {
      "type": "number",
      "description": "Confidence score."
    },
    "boundingBox": {
      "$ref": "#/components/schemas/BoundingBox"
    }
  }
}