Salesforce · Schema

Topics

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
currentPageUrl ['string', 'null']
nextPageUrl ['string', 'null']
topics array
View JSON Schema on GitHub

JSON Schema

salesforce-topics-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "currentPageUrl": {
      "type": "['string', 'null']",
      "example": "https://www.example.com"
    },
    "nextPageUrl": {
      "type": "['string', 'null']",
      "example": "https://www.example.com"
    },
    "topics": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "currentPageUrl",
    "nextPageUrl",
    "topics"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Topics"
}