MediaCollection

Collection of CMS media files

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

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

JSON Schema

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