Example

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
id integer
name string
label object
createdAt string
object string
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-example-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Example",
  "title": "Example",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "label": {
      "$ref": "#/components/schemas/Label"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "object": {
      "type": "string"
    }
  }
}