contentstack · Schema

StackList

A list of stacks.

Properties

Name Type Description
stacks array Array of stack objects.
View JSON Schema on GitHub

JSON Schema

contentstack-stacklist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StackList",
  "title": "StackList",
  "type": "object",
  "description": "A list of stacks.",
  "properties": {
    "stacks": {
      "type": "array",
      "description": "Array of stack objects.",
      "items": {
        "$ref": "#/components/schemas/Stack"
      }
    }
  }
}