Salesforce · Schema

Record3

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
attributes object
lastname string
Title string
email string
View JSON Schema on GitHub

JSON Schema

salesforce-record3-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "example": "example_value"
        },
        "referenceId": {
          "type": "string",
          "example": "500123"
        }
      },
      "required": [
        "type",
        "referenceId"
      ]
    },
    "lastname": {
      "type": "string",
      "example": "example_value"
    },
    "Title": {
      "type": "string",
      "example": "Example Title"
    },
    "email": {
      "type": "string",
      "example": "user@example.com"
    }
  },
  "required": [
    "attributes",
    "lastname",
    "email"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Record3"
}