Salesforce · JSON Structure

Salesforce Record24 Structure

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

Record24 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 SandboxName LicenseType AutoActivate

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Record24",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "required": [
        "type",
        "url"
      ]
    },
    "Id": {
      "type": "string"
    },
    "SandboxName": {
      "type": "string"
    },
    "LicenseType": {
      "type": "string"
    },
    "AutoActivate": {
      "type": "boolean"
    }
  },
  "required": [
    "attributes",
    "Id",
    "SandboxName",
    "LicenseType",
    "AutoActivate"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}