GraphRequest

AutomationCloudCRMEnterpriseSales

Properties

Name Type Description
graphs array
View JSON Schema on GitHub

JSON Schema

salesforce-automation-graphrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GraphRequest",
  "title": "GraphRequest",
  "type": "object",
  "required": [
    "graphs"
  ],
  "properties": {
    "graphs": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "graphId",
          "compositeRequest"
        ],
        "properties": {
          "graphId": {
            "type": "string",
            "description": "Unique identifier for this graph"
          },
          "compositeRequest": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CompositeSubrequest"
            }
          }
        }
      }
    }
  }
}