Salesforce · JSON Structure

Salesforce Edge6 Structure

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

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

Properties

node

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Edge6",
  "properties": {
    "node": {
      "type": "object",
      "properties": {
        "Id": {
          "type": "string"
        },
        "Name": {
          "type": "object",
          "properties": {
            "value": {
              "type": "string"
            }
          },
          "required": [
            "value"
          ]
        },
        "Account": {
          "type": "object",
          "properties": {
            "Name": {
              "type": "object",
              "properties": {
                "value": {
                  "type": "string"
                }
              },
              "required": [
                "value"
              ]
            }
          },
          "required": [
            "Name"
          ]
        }
      },
      "required": [
        "Id",
        "Name",
        "Account"
      ]
    }
  },
  "required": [
    "node"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}