Salesforce · Schema

SuccessfulFeedElementsBatchPost

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
hasErrors boolean
results array
View JSON Schema on GitHub

JSON Schema

salesforce-successful-feed-elements-batch-post-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "hasErrors": {
      "type": "boolean",
      "example": true
    },
    "results": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "result": {
            "type": "object",
            "example": "example_value"
          },
          "statusCode": {
            "type": "integer",
            "example": 10
          }
        },
        "required": [
          "result",
          "statusCode"
        ]
      }
    }
  },
  "required": [
    "hasErrors",
    "results"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SuccessfulFeedElementsBatchPost"
}