Salesforce · JSON Structure

Salesforce Likes Structure

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

Likes is a JSON Structure definition published by Salesforce, describing 8 properties, of which 8 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

currentPageToken currentPageUrl items nextPageToken nextPageUrl previousPageToken previousPageUrl total

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Likes",
  "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"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}