Salesforce · JSON Structure

Salesforce Graph Structure

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

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

Properties

graphId compositeRequest

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Graph",
  "properties": {
    "graphId": {
      "type": "string"
    },
    "compositeRequest": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "method": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "referenceId": {
            "type": "string"
          },
          "body": {
            "type": "object",
            "properties": {
              "Name": {
                "type": "string"
              },
              "Custom__c": {
                "type": "string"
              }
            },
            "required": [
              "Name",
              "Custom__c"
            ]
          }
        },
        "required": [
          "method",
          "url",
          "referenceId"
        ]
      }
    }
  },
  "required": [
    "graphId",
    "compositeRequest"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}