Salesforce · JSON Structure

Salesforce Query3 Structure

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

Query3 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

Account

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Query3",
  "properties": {
    "Account": {
      "type": "object",
      "properties": {
        "edges": {
          "type": "array",
          "description": "",
          "items": {
            "type": "object",
            "properties": {
              "node": {
                "type": "object",
                "properties": {
                  "Id": {
                    "type": "string"
                  },
                  "Name": {
                    "type": "object",
                    "properties": {
                      "value": {
                        "type": "object"
                      }
                    },
                    "required": [
                      "value"
                    ]
                  }
                },
                "required": [
                  "Id",
                  "Name"
                ]
              }
            },
            "required": [
              "node"
            ]
          }
        },
        "totalCount": {
          "type": "integer"
        },
        "pageInfo": {
          "type": "object",
          "properties": {
            "hasNextPage": {
              "type": "boolean"
            },
            "hasPreviousPage": {
              "type": "boolean"
            },
            "startCursor": {
              "type": "string"
            },
            "endCursor": {
              "type": "string"
            }
          },
          "required": [
            "hasNextPage",
            "hasPreviousPage",
            "startCursor",
            "endCursor"
          ]
        }
      },
      "required": [
        "edges",
        "totalCount",
        "pageInfo"
      ]
    }
  },
  "required": [
    "Account"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}