Salesforce · Schema

Likes

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
currentPageToken ['string', 'null']
currentPageUrl string
items array
nextPageToken ['string', 'null']
nextPageUrl ['string', 'null']
previousPageToken ['string', 'null']
previousPageUrl ['string', 'null']
total integer
View JSON Schema on GitHub

JSON Schema

salesforce-likes-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "currentPageToken": {
      "type": "['string', 'null']",
      "example": "CAUQAA"
    },
    "currentPageUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "items": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "nextPageToken": {
      "type": "['string', 'null']",
      "example": "CAUQAA"
    },
    "nextPageUrl": {
      "type": "['string', 'null']",
      "example": "https://www.example.com"
    },
    "previousPageToken": {
      "type": "['string', 'null']",
      "example": "CAUQAA"
    },
    "previousPageUrl": {
      "type": "['string', 'null']",
      "example": "https://www.example.com"
    },
    "total": {
      "type": "integer",
      "example": 42
    }
  },
  "required": [
    "currentPageToken",
    "currentPageUrl",
    "items",
    "nextPageToken",
    "nextPageUrl",
    "previousPageToken",
    "previousPageUrl",
    "total"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Likes"
}