Salesforce · Schema

SuccessfulCompositeGraph

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
graphs array
View JSON Schema on GitHub

JSON Schema

salesforce-successful-composite-graph-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "graphs": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "graphId": {
            "type": "string",
            "example": "500123"
          },
          "graphResponse": {
            "type": "object",
            "properties": {
              "compositeResponse": {
                "type": "array",
                "description": "",
                "example": [],
                "items": {
                  "type": "object",
                  "properties": {
                    "body": {
                      "type": "object"
                    },
                    "httpHeaders": {
                      "type": "object"
                    },
                    "httpStatusCode": {
                      "type": "object"
                    },
                    "referenceId": {
                      "type": "object"
                    }
                  },
                  "required": [
                    "body",
                    "httpHeaders",
                    "httpStatusCode",
                    "referenceId"
                  ]
                }
              }
            },
            "required": [
              "compositeResponse"
            ]
          },
          "isSuccessful": {
            "type": "boolean",
            "example": true
          }
        },
        "required": [
          "graphId",
          "graphResponse",
          "isSuccessful"
        ]
      }
    }
  },
  "required": [
    "graphs"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SuccessfulCompositeGraph"
}