MuleSoft · Schema

EnvironmentUpdate

Request body for updating an environment

API GatewayAPI ManagementEnterpriseIntegration

Properties

Name Type Description
name string New display name for the environment
type string New environment type classification
View JSON Schema on GitHub

JSON Schema

mulesoft-environmentupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnvironmentUpdate",
  "title": "EnvironmentUpdate",
  "type": "object",
  "description": "Request body for updating an environment",
  "properties": {
    "name": {
      "type": "string",
      "description": "New display name for the environment",
      "example": "Example Title"
    },
    "type": {
      "type": "string",
      "description": "New environment type classification",
      "enum": [
        "design",
        "sandbox",
        "production"
      ],
      "example": "design"
    }
  }
}