Windmill Workspace schema
{ "$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" ] }