ContentCollection

Collection of CMS content items

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
content array
currentPageUrl string
nextPageUrl string
totalCount integer
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-contentcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentCollection",
  "title": "ContentCollection",
  "type": "object",
  "description": "Collection of CMS content items",
  "properties": {
    "content": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Content"
      }
    },
    "currentPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "nextPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "totalCount": {
      "type": "integer"
    }
  }
}