{
  "manifest_version": "1.0.0",
  "template": {
    "id": "f73095ad-2806-4baf-8bc6-9afe6b720d25",
    "slug": "glitchtip",
    "name": "GlitchTip",
    "description": "Official GlitchTip open source error tracking https://glitchtip.com/",
    "url": "https://railway.com/deploy/glitchtip",
    "upstream": {
      "image": "glitchtip/glitchtip:6"
    }
  },
  "services": [
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:17"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2.1"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "GlitchTip Web",
      "source": {
        "image": "glitchtip/glitchtip:6"
      },
      "needs_volume": false,
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Location where the database will be initialized",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Railway Private Domain Name.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Port to connect to Postgres.",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "Required variable for Data panel",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "Required variable for the data panel.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "Required variable for Data panel",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Default database created when image is started.",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "URL to connect to Postgres database.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "User to connect to Postgres DB",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "SSL certificate expiry in days.",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Password to connect to DB",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_PUBLIC_URL",
      "service": "Postgres",
      "description": "Public URL to connect to Postgres database, used by the Data panel.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Allow Postgres to cleanly shut down",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Provide a value for REDISHOST.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Provide a value for REDISPORT.",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Provide a value for REDISUSER.",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Connection string for connecting to redis using the private network",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Provide a value for REDISPASSWORD.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Provide a value for REDIS_PASSWORD.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "REDIS_PUBLIC_URL",
      "service": "Redis",
      "description": "Connection string for connecting to redis externally",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PORT",
      "service": "GlitchTip Web",
      "description": "Provide a value for PORT.",
      "secret": false,
      "strategy": "default",
      "default": "8000"
    },
    {
      "key": "EMAIL_URL",
      "service": "GlitchTip Web",
      "description": "SMTP connection string. Format: smtp://user:pass@host:port. Default outputs email to logs.",
      "secret": false,
      "strategy": "default",
      "default": "consolemail://"
    },
    {
      "key": "SECRET_KEY",
      "service": "GlitchTip Web",
      "description": "Provide a value for SECRET_KEY.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "VALKEY_URL",
      "service": "GlitchTip Web",
      "description": "Provide a value for VALKEY_URL.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_URL",
      "service": "GlitchTip Web",
      "description": "Provide a value for DATABASE_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "ENABLE_ADMIN",
      "service": "GlitchTip Web",
      "description": "Set to True to enable Django Admin at /admin/. Requires a superuser account.",
      "secret": false,
      "strategy": "default",
      "default": "False"
    },
    {
      "key": "ENABLE_OPENAPI",
      "service": "GlitchTip Web",
      "description": "OpenAPI spec at /api/docs",
      "secret": false,
      "strategy": "default",
      "default": "False"
    },
    {
      "key": "GRANIAN_WORKERS",
      "service": "GlitchTip Web",
      "description": "Web server worker processes. Increase to 2–4 for more throughput.",
      "secret": false,
      "strategy": "default",
      "default": "1"
    },
    {
      "key": "GLITCHTIP_DOMAIN",
      "service": "GlitchTip Web",
      "description": "Provide a value for GLITCHTIP_DOMAIN.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "AWS_ACCESS_KEY_ID",
      "service": "GlitchTip Web",
      "description": "Provide a value for AWS_ACCESS_KEY_ID.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VTASKS_CONCURRENCY",
      "service": "GlitchTip Web",
      "description": "Concurrent async background tasks",
      "secret": false,
      "strategy": "default",
      "default": "20"
    },
    {
      "key": "AWS_S3_ENDPOINT_URL",
      "service": "GlitchTip Web",
      "description": "Provide a value for AWS_S3_ENDPOINT_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DEFAULT_FILE_STORAGE",
      "service": "GlitchTip Web",
      "description": "Provide a value for DEFAULT_FILE_STORAGE.",
      "secret": false,
      "strategy": "default",
      "default": "storages.backends.s3boto3.S3Boto3Storage"
    },
    {
      "key": "I_PAID_FOR_GLITCHTIP",
      "service": "GlitchTip Web",
      "description": "Provide a value for I_PAID_FOR_GLITCHTIP.",
      "secret": false,
      "strategy": "default",
      "default": "paas"
    },
    {
      "key": "AWS_SECRET_ACCESS_KEY",
      "service": "GlitchTip Web",
      "description": "Provide a value for AWS_SECRET_ACCESS_KEY.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_POOL_MAX_SIZE",
      "service": "GlitchTip Web",
      "description": "Postgres connection pool size",
      "secret": false,
      "strategy": "default",
      "default": "20"
    },
    {
      "key": "AWS_STORAGE_BUCKET_NAME",
      "service": "GlitchTip Web",
      "description": "Provide a value for AWS_STORAGE_BUCKET_NAME.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ENABLE_USER_REGISTRATION",
      "service": "GlitchTip Web",
      "description": "Set to True to allow public signups. When False, only the first user can self-register; others must be invited.",
      "secret": false,
      "strategy": "default",
      "default": "False"
    },
    {
      "key": "ENABLE_ORGANIZATION_CREATION",
      "service": "GlitchTip Web",
      "description": "When False, only superusers can create new organizations.",
      "secret": false,
      "strategy": "default",
      "default": "False"
    },
    {
      "key": "GLITCHTIP_MAX_EVENT_LIFE_DAYS",
      "service": "GlitchTip Web",
      "description": "Events older than this (in days) are automatically deleted.",
      "secret": false,
      "strategy": "default",
      "default": "90"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "glitchtip"
      }
    },
    "cli": "railway deploy --template glitchtip",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "f73095ad-2806-4baf-8bc6-9afe6b720d25",
            "serializedConfig": {
              "buckets": {
                "ea41f679-94f5-478c-b7cd-f3e768347330": {
                  "name": "Bucket"
                }
              },
              "services": {
                "1e8b89a0-8d53-4744-832e-32bd666c7b49": {
                  "icon": "https://devicons.railway.app/i/postgresql.svg",
                  "name": "Postgres",
                  "build": {},
                  "deploy": {
                    "requiredMountPath": "/var/lib/postgresql/data"
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:17",
                    "autoUpdates": {
                      "type": "patch",
                      "schedule": [
                        {
                          "day": 0,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 1,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 2,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 3,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 4,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 5,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 6,
                          "endHour": 6,
                          "startHour": 2
                        }
                      ]
                    }
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "Location where the database will be initialized",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Railway Private Domain Name.",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Port to connect to Postgres.",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "Required variable for Data panel",
                      "defaultValue": "${{ POSTGRES_USER }}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "Required variable for the data panel.",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "Required variable for Data panel",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Default database created when image is started.",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "URL to connect to Postgres database.",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "User to connect to Postgres DB",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": true,
                      "description": "SSL certificate expiry in days.",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Password to connect to DB",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_PUBLIC_URL": {
                      "description": "Public URL to connect to Postgres database, used by the Data panel.",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{PGDATABASE}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Allow Postgres to cleanly shut down",
                      "defaultValue": "60"
                    }
                  },
                  "networking": {},
                  "volumeMounts": {
                    "1e8b89a0-8d53-4744-832e-32bd666c7b49": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  },
                  "haTemplateCode": "postgres-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxy",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "Routes traffic to the primary",
                      "defaultValue": 3
                    },
                    "replica": {
                      "label": "Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5,
                        6,
                        7
                      ],
                      "nodeLabel": "Postgres",
                      "description": "Streaming replicas for automatic failover",
                      "defaultValue": 2
                    },
                    "internal": {
                      "label": "Coordinator Nodes",
                      "options": [
                        3,
                        5,
                        7,
                        9
                      ],
                      "nodeLabel": "etcd",
                      "defaultValue": 3
                    },
                    "description": "This will convert your Postgres database to an HA cluster with Patroni failover and etcd consensus."
                  }
                },
                "454d0ab8-f0e2-41ef-b979-999d6775e891": {
                  "icon": "https://cdn.sanity.io/images/sy1jschh/production/0ce0bfdcfbdbf69662b1116671f97c2dd788b655-157x157.svg",
                  "name": "Redis",
                  "deploy": {
                    "startCommand": "/bin/sh -c \"rm -rf $RAILWAY_VOLUME_MOUNT_PATH/lost+found/ && exec docker-entrypoint.sh redis-server --requirepass $REDIS_PASSWORD --save 60 1 --dir $RAILWAY_VOLUME_MOUNT_PATH\""
                  },
                  "source": {
                    "image": "redis:8.2.1",
                    "autoUpdates": {
                      "type": "patch",
                      "schedule": [
                        {
                          "day": 0,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 1,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 2,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 3,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 4,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 5,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 6,
                          "endHour": 6,
                          "startHour": 2
                        }
                      ]
                    }
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Connection string for connecting to redis using the private network",
                      "defaultValue": "redis://${{ REDISUSER }}:${{ REDIS_PASSWORD }}@${{ REDISHOST }}:${{ REDISPORT }}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    },
                    "REDIS_PUBLIC_URL": {
                      "description": "Connection string for connecting to redis externally",
                      "defaultValue": "redis://default:${{ REDIS_PASSWORD }}@${{ RAILWAY_TCP_PROXY_DOMAIN }}:${{ RAILWAY_TCP_PROXY_PORT }}"
                    }
                  },
                  "networking": {},
                  "volumeMounts": {
                    "454d0ab8-f0e2-41ef-b979-999d6775e891": {
                      "mountPath": "/data"
                    }
                  },
                  "haTemplateCode": "redis-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxies",
                      "options": [
                        1,
                        2
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "HAProxy instances routing writes to the primary",
                      "defaultValue": 2
                    },
                    "replica": {
                      "label": "Redis Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "Redis",
                      "description": "Nodes running Redis + colocated Sentinel",
                      "defaultValue": 2
                    },
                    "internal": null,
                    "description": "This will convert your Redis instance to an HA cluster with Sentinel failover and HAProxy routing to the primary."
                  }
                },
                "c4a4373f-fb60-45cf-8961-36c45bab691f": {
                  "icon": "https://glitchtip.com/assets/home/glitchtip-g.png",
                  "name": "GlitchTip Web",
                  "deploy": {
                    "startCommand": "bin/run-all-in-one.sh",
                    "healthcheckPath": "/_health/",
                    "preDeployCommand": [
                      "bin/run-migrate.sh"
                    ]
                  },
                  "source": {
                    "image": "glitchtip/glitchtip:6",
                    "autoUpdates": {
                      "type": "patch",
                      "schedule": [
                        {
                          "day": 0,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 1,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 2,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 3,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 4,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 5,
                          "endHour": 6,
                          "startHour": 2
                        },
                        {
                          "day": 6,
                          "endHour": 6,
                          "startHour": 2
                        }
                      ]
                    }
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "8000"
                    },
                    "EMAIL_URL": {
                      "isOptional": false,
                      "description": "SMTP connection string. Format: smtp://user:pass@host:port. Default outputs email to logs.",
                      "defaultValue": "consolemail://"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "{{SECRET_KEY}}"
                    },
                    "VALKEY_URL": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "postgres://${{Postgres.POSTGRES_USER}}:${{Postgres.POSTGRES_PASSWORD}}@${{Postgres.RAILWAY_PRIVATE_DOMAIN}}:5432/${{Postgres.POSTGRES_DB}}"
                    },
                    "ENABLE_ADMIN": {
                      "isOptional": true,
                      "description": "Set to True to enable Django Admin at /admin/. Requires a superuser account.",
                      "defaultValue": "False"
                    },
                    "ENABLE_OPENAPI": {
                      "isOptional": true,
                      "description": "OpenAPI spec at /api/docs",
                      "defaultValue": "False"
                    },
                    "GRANIAN_WORKERS": {
                      "isOptional": true,
                      "description": "Web server worker processes. Increase to 2–4 for more throughput.",
                      "defaultValue": "1"
                    },
                    "GLITCHTIP_DOMAIN": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "AWS_ACCESS_KEY_ID": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "${{Bucket.ACCESS_KEY_ID}}"
                    },
                    "DEFAULT_FROM_EMAIL": {
                      "isOptional": true,
                      "description": "Sender address for outgoing emails. Change to your actual email.",
                      "defaultValue": ""
                    },
                    "VTASKS_CONCURRENCY": {
                      "isOptional": true,
                      "description": "Concurrent async background tasks",
                      "defaultValue": "20"
                    },
                    "AWS_S3_ENDPOINT_URL": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "${{Bucket.ENDPOINT}}"
                    },
                    "DEFAULT_FILE_STORAGE": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "storages.backends.s3boto3.S3Boto3Storage"
                    },
                    "I_PAID_FOR_GLITCHTIP": {
                      "isOptional": true,
                      "description": "",
                      "defaultValue": "paas"
                    },
                    "AWS_SECRET_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "${{Bucket.SECRET_ACCESS_KEY}}"
                    },
                    "DATABASE_POOL_MAX_SIZE": {
                      "isOptional": true,
                      "description": "Postgres connection pool size",
                      "defaultValue": "20"
                    },
                    "AWS_STORAGE_BUCKET_NAME": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "${{Bucket.BUCKET}}"
                    },
                    "ENABLE_USER_REGISTRATION": {
                      "isOptional": true,
                      "description": "Set to True to allow public signups. When False, only the first user can self-register; others must be invited.",
                      "defaultValue": "False"
                    },
                    "ENABLE_ORGANIZATION_CREATION": {
                      "isOptional": true,
                      "description": "When False, only superusers can create new organizations.",
                      "defaultValue": "False"
                    },
                    "GLITCHTIP_MAX_EVENT_LIFE_DAYS": {
                      "isOptional": true,
                      "description": "Events older than this (in days) are automatically deleted.",
                      "defaultValue": "90"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8000": {
                        "port": 8000
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "GlitchTip Web",
      "method": "GET",
      "path": "/_health/",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 3,
    "needs_volume": true
  },
  "generated_at": "2026-09-20T10:14:37.339Z",
  "generator_version": "0.1.0",
  "status": "degraded",
  "validated_at": "2026-09-18T12:29:18.321Z",
  "success_rate_30d": 0,
  "validation": {
    "last_run_id": "run_82dd280dfeca4021aae6",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": false,
        "detail": "Your workspace has been restricted. Please contact support to resolve this."
      }
    ]
  }
}
