Salesforce · Schema

ReadBy

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
isReadByMe boolean
lastReadDateByMe string
page object
View JSON Schema on GitHub

JSON Schema

salesforce-read-by-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "isReadByMe": {
      "type": "boolean",
      "example": true
    },
    "lastReadDateByMe": {
      "type": "string",
      "example": "example_value"
    },
    "page": {
      "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"
      ]
    }
  },
  "required": [
    "isReadByMe",
    "lastReadDateByMe",
    "page"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ReadBy"
}