contentstack · Schema

Environment

A deployment environment for publishing content.

Properties

Name Type Description
uid string Unique identifier of the environment.
name string Display name of the environment.
urls array List of URL configurations for the environment.
created_at string ISO 8601 timestamp when the environment was created.
View JSON Schema on GitHub

JSON Schema

contentstack-environment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Environment",
  "title": "Environment",
  "type": "object",
  "description": "A deployment environment for publishing content.",
  "properties": {
    "uid": {
      "type": "string",
      "description": "Unique identifier of the environment."
    },
    "name": {
      "type": "string",
      "description": "Display name of the environment."
    },
    "urls": {
      "type": "array",
      "description": "List of URL configurations for the environment.",
      "items": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "The URL for the environment."
          },
          "locale": {
            "type": "string",
            "description": "The locale associated with this URL."
          }
        }
      }
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the environment was created."
    }
  }
}