contentstack · Schema

EnvironmentList

A list of deployment environments.

Properties

Name Type Description
environments array Array of environment objects.
View JSON Schema on GitHub

JSON Schema

contentstack-environmentlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnvironmentList",
  "title": "EnvironmentList",
  "type": "object",
  "description": "A list of deployment environments.",
  "properties": {
    "environments": {
      "type": "array",
      "description": "Array of environment objects.",
      "items": {
        "$ref": "#/components/schemas/Environment"
      }
    }
  }
}