Coalesce · Schema

Environment

A Coalesce deployment environment that contains nodes and is associated with a project.

Data TransformationSnowflakeData PipelinesData CatalogData QualityAnalyticsAI

Properties

Name Type Description
id string Unique environment identifier
name string Environment name
status string Environment status
project string Associated project ID
createdAt string Timestamp when the environment was created
createdBy string User who created the environment
View JSON Schema on GitHub

JSON Schema

environment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/coalesce/main/json-schema/environment.json",
  "title": "Environment",
  "description": "A Coalesce deployment environment that contains nodes and is associated with a project.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique environment identifier"
    },
    "name": {
      "type": "string",
      "description": "Environment name"
    },
    "status": {
      "type": "string",
      "description": "Environment status"
    },
    "project": {
      "type": "string",
      "description": "Associated project ID"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the environment was created"
    },
    "createdBy": {
      "type": "string",
      "description": "User who created the environment"
    }
  },
  "required": ["id", "name"]
}