Salesforce · JSON Structure

Salesforce Opportunity3 Structure

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

Opportunity3 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

edges

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Opportunity3",
  "properties": {
    "edges": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "node": {
            "type": "object",
            "properties": {
              "Id": {
                "type": "string"
              },
              "Name": {
                "type": "object",
                "properties": {
                  "value": {
                    "type": "string"
                  }
                },
                "required": [
                  "value"
                ]
              },
              "CloseDate": {
                "type": "object",
                "properties": {
                  "value": {
                    "type": "string"
                  },
                  "displayValue": {
                    "type": "string"
                  }
                },
                "required": [
                  "value",
                  "displayValue"
                ]
              },
              "StageName": {
                "type": "object",
                "properties": {
                  "value": {
                    "type": "string"
                  }
                },
                "required": [
                  "value"
                ]
              }
            },
            "required": [
              "Id",
              "Name",
              "CloseDate",
              "StageName"
            ]
          }
        },
        "required": [
          "node"
        ]
      }
    }
  },
  "required": [
    "edges"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}