DeliveryCollection

A content collection with its items

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
collectionKey string
collectionType string
items array
label string
name string
totalCount integer
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-deliverycollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeliveryCollection",
  "title": "DeliveryCollection",
  "type": "object",
  "description": "A content collection with its items",
  "properties": {
    "collectionKey": {
      "type": "string"
    },
    "collectionType": {
      "type": "string"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DeliveryContentItem"
      }
    },
    "label": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "totalCount": {
      "type": "integer"
    }
  }
}