Salesforce · JSON Structure

Salesforce Read By Structure

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

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

Properties

isReadByMe lastReadDateByMe page

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "ReadBy",
  "properties": {
    "isReadByMe": {
      "type": "boolean"
    },
    "lastReadDateByMe": {
      "type": "string"
    },
    "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": [
    "isReadByMe",
    "lastReadDateByMe",
    "page"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}