Salesforce · JSON Structure

Salesforce Record5 Structure

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

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

Properties

attributes Name BillingCity LastName FirstName

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Record5",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ]
    },
    "Name": {
      "type": "string"
    },
    "BillingCity": {
      "type": "string"
    },
    "LastName": {
      "type": "string"
    },
    "FirstName": {
      "type": "string"
    }
  },
  "required": [
    "attributes"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}