Salesforce · Schema

RecordCount

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
sObjects array
View JSON Schema on GitHub

JSON Schema

salesforce-record-count-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "sObjects": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "count": {
            "type": "integer",
            "example": 42
          },
          "name": {
            "type": "string",
            "example": "Example Title"
          }
        },
        "required": [
          "count",
          "name"
        ]
      }
    }
  },
  "required": [
    "sObjects"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RecordCount"
}