CircleCI · Schema

ProjectEnvVar

CI/CDContinuous IntegrationContinuous DeploymentDevOpsPipelinesWorkflows

Properties

Name Type Description
name string The name of the environment variable
value string The masked value of the environment variable
View JSON Schema on GitHub

JSON Schema

circleci-projectenvvar-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectEnvVar",
  "title": "ProjectEnvVar",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the environment variable"
    },
    "value": {
      "type": "string",
      "description": "The masked value of the environment variable"
    }
  }
}