Salesforce · Schema

Account10

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
edges array
totalCount integer
pageInfo object
View JSON Schema on GitHub

JSON Schema

salesforce-account10-schema.json Raw ↑
{
  "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": "string",
                    "example": "example_value"
                  }
                },
                "required": [
                  "value"
                ]
              }
            },
            "required": [
              "Id",
              "Name"
            ]
          }
        },
        "required": [
          "node"
        ]
      }
    },
    "totalCount": {
      "type": "integer",
      "example": 42
    },
    "pageInfo": {
      "type": "object",
      "properties": {
        "hasNextPage": {
          "type": "boolean",
          "example": true
        },
        "hasPreviousPage": {
          "type": "boolean",
          "example": true
        },
        "startCursor": {
          "type": "string",
          "example": "example_value"
        },
        "endCursor": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "hasNextPage",
        "hasPreviousPage",
        "startCursor",
        "endCursor"
      ]
    }
  },
  "required": [
    "edges",
    "totalCount",
    "pageInfo"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Account10"
}