CircleCI · Schema

EnvironmentVariable

CI/CDContinuous IntegrationContinuous DeploymentDevOpsPipelinesWorkflows

Properties

Name Type Description
variable string The name of the environment variable
created_at string When the variable was created
updated_at string When the variable was last updated
context_id string The ID of the context this variable belongs to
View JSON Schema on GitHub

JSON Schema

circleci-environmentvariable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnvironmentVariable",
  "title": "EnvironmentVariable",
  "type": "object",
  "properties": {
    "variable": {
      "type": "string",
      "description": "The name of the environment variable"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the variable was created"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the variable was last updated"
    },
    "context_id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the context this variable belongs to"
    }
  }
}