Salesforce · JSON Structure

Salesforce Record9 Structure

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

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

Properties

attributes Id DeveloperName MasterLabel ChannelType

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Record9",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "required": [
        "type",
        "url"
      ]
    },
    "Id": {
      "type": "string"
    },
    "DeveloperName": {
      "type": "string"
    },
    "MasterLabel": {
      "type": "string"
    },
    "ChannelType": {
      "type": "string"
    }
  },
  "required": [
    "attributes",
    "Id",
    "DeveloperName",
    "MasterLabel",
    "ChannelType"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}