Windmill · JSON Structure

Windmill Workspace Structure

Structure definition for Windmill Workspace

Type: Properties: 0
AutomationInternal ToolsOpen SourceProCode API CompositionScriptsWebhooksWorkflow EngineWorkflows

Windmill Workspace Structure is a JSON Structure definition published by Windmill. It conforms to the https://json-schema.org/draft/2020-12/schema meta-schema.

Meta-schema: https://json-schema.org/draft/2020-12/schema

JSON Structure

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