Salesforce · JSON Structure

Salesforce Record4 Structure

Type: object Properties: 6 Required: 6
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Record4 is a JSON Structure definition published by Salesforce, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

attributes name phone website numberOfEmployees industry

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Record4",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        },
        "referenceId": {
          "type": "string"
        }
      },
      "required": [
        "type",
        "referenceId"
      ]
    },
    "name": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "website": {
      "type": "string"
    },
    "numberOfEmployees": {
      "type": "string"
    },
    "industry": {
      "type": "string"
    }
  },
  "required": [
    "attributes",
    "name",
    "phone",
    "website",
    "numberOfEmployees",
    "industry"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}