Windmill · JSON Structure

Windmill Resource Structure

Structure definition for Windmill Resource

Type: Properties: 0
AutomationInternal ToolsOpen SourceProCode API CompositionScriptsWebhooksWorkflow EngineWorkflows

Windmill Resource 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-resource-structure.json",
  "title": "Windmill Resource Structure",
  "description": "Structure definition for Windmill Resource",
  "structure": {
    "type": "object",
    "required": [
      "path",
      "resource_type",
      "is_oauth"
    ],
    "properties": {
      "workspace_id": {
        "type": "string"
      },
      "path": {
        "type": "string"
      },
      "description": {
        "type": "string"
      },
      "resource_type": {
        "type": "string"
      },
      "value": {
        "type": "object"
      },
      "is_oauth": {
        "type": "boolean"
      },
      "extra_perms": {
        "type": "object"
      },
      "created_by": {
        "type": "string"
      },
      "edited_at": {
        "type": "string"
      },
      "labels": {
        "type": "array",
        "items": "string"
      }
    }
  }
}