Windmill · Schema

Workspace

Windmill Workspace schema

AutomationInternal ToolsOpen SourceProCode API CompositionScriptsWebhooksWorkflow EngineWorkflows

Properties

Name Type Description
id string
name string
owner string
domain string
color string
parent_workspace_id string
View JSON Schema on GitHub

JSON Schema

windmill-workspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/windmill/refs/heads/main/json-schema/windmill-workspace-schema.json",
  "title": "Workspace",
  "description": "Windmill Workspace schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "owner": {
      "type": "string"
    },
    "domain": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "parent_workspace_id": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "id",
    "name",
    "owner",
    "created_at"
  ]
}