Salesforce · Schema

Userdata

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
firstName string
lastName string
email string
username string
View JSON Schema on GitHub

JSON Schema

salesforce-userdata-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "example_value"
    },
    "lastName": {
      "type": "string",
      "example": "example_value"
    },
    "email": {
      "type": "string",
      "example": "user@example.com"
    },
    "username": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "firstName",
    "lastName",
    "email",
    "username"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Userdata"
}