contentstack · Schema

CreateEnvironmentRequest

Parameters for creating or updating an environment.

Properties

Name Type Description
name string Display name for the environment.
domain string Custom domain for the environment.
View JSON Schema on GitHub

JSON Schema

contentstack-createenvironmentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateEnvironmentRequest",
  "title": "CreateEnvironmentRequest",
  "type": "object",
  "description": "Parameters for creating or updating an environment.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the environment."
    },
    "domain": {
      "type": "string",
      "description": "Custom domain for the environment."
    }
  }
}