contentstack · Schema

EntryList

A paginated list of published entries.

Properties

Name Type Description
entries array Array of entry objects.
count integer Total count of matching entries when include_count is true.
View JSON Schema on GitHub

JSON Schema

contentstack-entrylist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntryList",
  "title": "EntryList",
  "type": "object",
  "description": "A paginated list of published entries.",
  "properties": {
    "entries": {
      "type": "array",
      "description": "Array of entry objects.",
      "items": {
        "$ref": "#/components/schemas/Entry"
      }
    },
    "count": {
      "type": "integer",
      "description": "Total count of matching entries when include_count is true."
    }
  }
}