Salesforce · Schema

ChildRelationship

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
cascadeDelete boolean
childSObject string
deprecatedAndHidden boolean
field string
junctionIdListNames array
junctionReferenceTo array
relationshipName ['string', 'null']
restrictedDelete boolean
View JSON Schema on GitHub

JSON Schema

salesforce-child-relationship-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "cascadeDelete": {
      "type": "boolean",
      "example": true
    },
    "childSObject": {
      "type": "string",
      "example": "example_value"
    },
    "deprecatedAndHidden": {
      "type": "boolean",
      "example": true
    },
    "field": {
      "type": "string",
      "example": "example_value"
    },
    "junctionIdListNames": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "junctionReferenceTo": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "relationshipName": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "restrictedDelete": {
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "cascadeDelete",
    "childSObject",
    "deprecatedAndHidden",
    "field",
    "junctionIdListNames",
    "junctionReferenceTo",
    "relationshipName",
    "restrictedDelete"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ChildRelationship"
}