Render · Schema

envGroupPOSTInput

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
name string
ownerId string
envVars object
secretFiles array
serviceIds array
environmentId string
View JSON Schema on GitHub

JSON Schema

render-envgrouppostinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/envGroupPOSTInput",
  "title": "envGroupPOSTInput",
  "type": "object",
  "required": [
    "name",
    "ownerId",
    "envVars"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "ownerId": {
      "type": "string"
    },
    "envVars": {
      "$ref": "#/components/schemas/envVarInputArray"
    },
    "secretFiles": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/secretFileInput"
      }
    },
    "serviceIds": {
      "type": "array",
      "items": {
        "description": "List of serviceIds to link the envGroup to",
        "type": "string"
      }
    },
    "environmentId": {
      "type": "string"
    }
  }
}