ManagedContentVersionCollection

Collection of managed content versions

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
currentPageUrl string
items array
managedContentTypes object Map of content type developer names to labels
nextPageUrl string
total integer Total number of matching items
totalCount integer
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-managedcontentversioncollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedContentVersionCollection",
  "title": "ManagedContentVersionCollection",
  "type": "object",
  "description": "Collection of managed content versions",
  "properties": {
    "currentPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ManagedContentVersion"
      }
    },
    "managedContentTypes": {
      "type": "object",
      "description": "Map of content type developer names to labels",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "developerName": {
            "type": "string"
          },
          "label": {
            "type": "string"
          }
        }
      }
    },
    "nextPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "total": {
      "type": "integer",
      "description": "Total number of matching items"
    },
    "totalCount": {
      "type": "integer"
    }
  }
}