Salesforce · JSON Structure

Salesforce Comments Structure

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

Comments 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

page

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Comments",
  "properties": {
    "page": {
      "type": "object",
      "properties": {
        "currentPageToken": {
          "type": "['string', 'null']"
        },
        "currentPageUrl": {
          "type": "string"
        },
        "items": {
          "type": "array",
          "description": "",
          "items": {
            "type": "string"
          }
        },
        "nextPageToken": {
          "type": "['string', 'null']"
        },
        "nextPageUrl": {
          "type": "['string', 'null']"
        },
        "previousPageToken": {
          "type": "['string', 'null']"
        },
        "previousPageUrl": {
          "type": "['string', 'null']"
        },
        "total": {
          "type": "integer"
        }
      },
      "required": [
        "currentPageToken",
        "currentPageUrl",
        "items",
        "nextPageToken",
        "nextPageUrl",
        "previousPageToken",
        "previousPageUrl",
        "total"
      ]
    }
  },
  "required": [
    "page"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}