Salesforce · JSON Structure

Salesforce Record Type Info Structure

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

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

Properties

active available defaultRecordTypeMapping developerName master name recordTypeId urls

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "RecordTypeInfo",
  "properties": {
    "active": {
      "type": "boolean"
    },
    "available": {
      "type": "boolean"
    },
    "defaultRecordTypeMapping": {
      "type": "boolean"
    },
    "developerName": {
      "type": "string"
    },
    "master": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "recordTypeId": {
      "type": "string"
    },
    "urls": {
      "type": "object",
      "properties": {
        "layout": {
          "type": "string"
        }
      },
      "required": [
        "layout"
      ]
    }
  },
  "required": [
    "active",
    "available",
    "defaultRecordTypeMapping",
    "developerName",
    "master",
    "name",
    "recordTypeId",
    "urls"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}