Render · Schema

projectPOSTEnvironmentInput

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
name string
protectedStatus object
networkIsolationEnabled object
ipAllowList array
View JSON Schema on GitHub

JSON Schema

render-projectpostenvironmentinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/projectPOSTEnvironmentInput",
  "title": "projectPOSTEnvironmentInput",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "protectedStatus": {
      "$ref": "#/components/schemas/protectedStatus"
    },
    "networkIsolationEnabled": {
      "$ref": "#/components/schemas/networkIsolationEnabled"
    },
    "ipAllowList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/cidrBlockAndDescription"
      }
    }
  }
}