Salesforce · Schema

Query4

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
Contact object
View JSON Schema on GitHub

JSON Schema

salesforce-query4-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "Contact": {
      "type": "object",
      "properties": {
        "edges": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "object",
            "properties": {
              "node": {
                "type": "object",
                "properties": {
                  "Id": {
                    "type": "string",
                    "example": "abc123"
                  },
                  "Name": {
                    "type": "object",
                    "properties": {
                      "value": {
                        "type": "object"
                      }
                    },
                    "required": [
                      "value"
                    ]
                  }
                },
                "required": [
                  "Id",
                  "Name"
                ]
              }
            },
            "required": [
              "node"
            ]
          }
        }
      },
      "required": [
        "edges"
      ]
    }
  },
  "required": [
    "Contact"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Query4"
}