{
  "manifest_version": "1.0.0",
  "template": {
    "id": "6c7fc7c4-7db7-45d3-a7ea-c08d5e5919d6",
    "slug": "pterodactyl-game-server",
    "name": "Pterodactyl Panel",
    "description": "Game server management UI for Minecraft, Rust, ARK and Source engine titles",
    "url": "https://railway.com/deploy/pterodactyl-game-server",
    "upstream": {
      "image": "ghcr.io/pterodactyl/panel:v1.15.0"
    }
  },
  "services": [
    {
      "name": "panel",
      "source": {
        "image": "ghcr.io/pterodactyl/panel:v1.15.0"
      },
      "needs_volume": true,
      "volume_mount_path": "/app/var",
      "http": true
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2.1"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "MySQL",
      "source": {
        "image": "mysql:9.4"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/mysql",
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "panel",
      "description": "Port Railway probes and routes",
      "secret": false,
      "strategy": "default",
      "default": "80"
    },
    {
      "key": "APP_ENV",
      "service": "panel",
      "description": "Laravel environment mode",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "APP_KEY",
      "service": "panel",
      "description": "Laravel encryption key, fixed after first boot",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "APP_URL",
      "service": "panel",
      "description": "Public panel URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "DB_HOST",
      "service": "panel",
      "description": "MySQL private hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "DB_PORT",
      "service": "panel",
      "description": "MySQL port",
      "secret": false,
      "strategy": "default",
      "default": "3306"
    },
    {
      "key": "APP_DEBUG",
      "service": "panel",
      "description": "Hide stack traces in production",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "ADMIN_LAST",
      "service": "panel",
      "description": "First admin surname",
      "secret": false,
      "strategy": "default",
      "default": "Admin"
    },
    {
      "key": "REDIS_HOST",
      "service": "panel",
      "description": "Redis private hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDIS_PORT",
      "service": "panel",
      "description": "Redis port",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "ADMIN_EMAIL",
      "service": "panel",
      "description": "First admin email address",
      "secret": false,
      "strategy": "default",
      "default": "admin@example.com"
    },
    {
      "key": "ADMIN_FIRST",
      "service": "panel",
      "description": "First admin given name",
      "secret": false,
      "strategy": "default",
      "default": "Panel"
    },
    {
      "key": "CACHE_STORE",
      "service": "panel",
      "description": "Cache driver, Laravel 11+ name",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "DB_DATABASE",
      "service": "panel",
      "description": "Panel database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PASSWORD",
      "service": "panel",
      "description": "Scoped database user password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_USERNAME",
      "service": "panel",
      "description": "Scoped, non-root database user",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MAIL_MAILER",
      "service": "panel",
      "description": "Change to smtp before real users",
      "secret": false,
      "strategy": "default",
      "default": "log"
    },
    {
      "key": "APP_TIMEZONE",
      "service": "panel",
      "description": "Panel-wide timezone",
      "secret": false,
      "strategy": "default",
      "default": "UTC"
    },
    {
      "key": "CACHE_DRIVER",
      "service": "panel",
      "description": "Cache driver, legacy name",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "HASHIDS_SALT",
      "service": "panel",
      "description": "Salt for public server identifiers",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "QUEUE_DRIVER",
      "service": "panel",
      "description": "Queue driver, legacy name",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "ADMIN_PASSWORD",
      "service": "panel",
      "description": "First admin password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "ADMIN_USERNAME",
      "service": "panel",
      "description": "First admin username",
      "secret": false,
      "strategy": "default",
      "default": "admin"
    },
    {
      "key": "HASHIDS_LENGTH",
      "service": "panel",
      "description": "Length of generated hashids",
      "secret": false,
      "strategy": "default",
      "default": "8"
    },
    {
      "key": "MAIL_FROM_NAME",
      "service": "panel",
      "description": "Outgoing sender display name",
      "secret": false,
      "strategy": "default",
      "default": "Pterodactyl Panel"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "panel",
      "description": "Redis auth password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SESSION_DRIVER",
      "service": "panel",
      "description": "Store sessions in Redis",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "TRUSTED_PROXIES",
      "service": "panel",
      "description": "Railway edge proxy ranges",
      "secret": false,
      "strategy": "default",
      "default": "100.64.0.0/10,fd00::/8"
    },
    {
      "key": "QUEUE_CONNECTION",
      "service": "panel",
      "description": "Queue driver, Laravel 11+ name",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "MAIL_FROM_ADDRESS",
      "service": "panel",
      "description": "Outgoing sender address",
      "secret": false,
      "strategy": "default",
      "default": "noreply@example.com"
    },
    {
      "key": "APP_SERVICE_AUTHOR",
      "service": "panel",
      "description": "Author stamped on seeded eggs",
      "secret": false,
      "strategy": "default",
      "default": "admin@example.com"
    },
    {
      "key": "APP_ENVIRONMENT_ONLY",
      "service": "panel",
      "description": "Also read settings from database",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Private hostname, reachable only inside the project",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Standard Redis port",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Default ACL user created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Private connection string, use this from other services",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Convenience alias of the generated password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Generated password for the default user",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "REDIS_PUBLIC_URL",
      "service": "Redis",
      "description": "Public connection string over the TCP proxy, for external tools",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQLHOST",
      "service": "MySQL",
      "description": "Private hostname, never publicly exposed",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "MYSQLPORT",
      "service": "MySQL",
      "description": "MySQL port on the private network",
      "secret": false,
      "strategy": "default",
      "default": "3306"
    },
    {
      "key": "MYSQLUSER",
      "service": "MySQL",
      "description": "Superuser; give the app a scoped user instead",
      "secret": false,
      "strategy": "default",
      "default": "root"
    },
    {
      "key": "MYSQL_URL",
      "service": "MySQL",
      "description": "Private-network connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "MYSQLDATABASE",
      "service": "MySQL",
      "description": "Alias consumers reference as ${{MySQL.MYSQLDATABASE}}",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQLPASSWORD",
      "service": "MySQL",
      "description": "Alias of the root password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQL_DATABASE",
      "service": "MySQL",
      "description": "Database created on first init",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "MYSQL_PUBLIC_URL",
      "service": "MySQL",
      "description": "External connection string; empty host/port until a TCP proxy exists",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQL_ROOT_PASSWORD",
      "service": "MySQL",
      "description": "Root password, generated once at init — read only when the data dir is created",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "pterodactyl-game-server"
      }
    },
    "cli": "railway deploy --template pterodactyl-game-server",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "6c7fc7c4-7db7-45d3-a7ea-c08d5e5919d6",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "1d6512ce-f238-4617-b092-7e858e4b0c05": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/pterodactyl.svg",
                  "name": "panel",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/auth/login",
                    "preDeployCommand": [
                      "/bin/ash -c \"cd /app; php artisan p:user:make --email=\\\"$ADMIN_EMAIL\\\" --username=\\\"$ADMIN_USERNAME\\\" --name-first=\\\"$ADMIN_FIRST\\\" --name-last=\\\"$ADMIN_LAST\\\" --password=\\\"$ADMIN_PASSWORD\\\" --admin=1 || true\""
                    ],
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/pterodactyl/panel:v1.15.0"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Port Railway probes and routes",
                      "defaultValue": "80"
                    },
                    "APP_ENV": {
                      "isOptional": false,
                      "description": "Laravel environment mode",
                      "defaultValue": "production"
                    },
                    "APP_KEY": {
                      "isOptional": false,
                      "description": "Laravel encryption key, fixed after first boot",
                      "defaultValue": "{{APP_KEY}}"
                    },
                    "APP_URL": {
                      "isOptional": false,
                      "description": "Public panel URL",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "DB_HOST": {
                      "isOptional": false,
                      "description": "MySQL private hostname",
                      "defaultValue": "${{MySQL.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "DB_PORT": {
                      "isOptional": false,
                      "description": "MySQL port",
                      "defaultValue": "3306"
                    },
                    "APP_DEBUG": {
                      "isOptional": false,
                      "description": "Hide stack traces in production",
                      "defaultValue": "false"
                    },
                    "ADMIN_LAST": {
                      "isOptional": false,
                      "description": "First admin surname",
                      "defaultValue": "Admin"
                    },
                    "REDIS_HOST": {
                      "isOptional": false,
                      "description": "Redis private hostname",
                      "defaultValue": "${{Redis.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDIS_PORT": {
                      "isOptional": false,
                      "description": "Redis port",
                      "defaultValue": "6379"
                    },
                    "ADMIN_EMAIL": {
                      "isOptional": false,
                      "description": "First admin email address",
                      "defaultValue": "admin@example.com"
                    },
                    "ADMIN_FIRST": {
                      "isOptional": false,
                      "description": "First admin given name",
                      "defaultValue": "Panel"
                    },
                    "CACHE_STORE": {
                      "isOptional": false,
                      "description": "Cache driver, Laravel 11+ name",
                      "defaultValue": "redis"
                    },
                    "DB_DATABASE": {
                      "isOptional": false,
                      "description": "Panel database name",
                      "defaultValue": "${{MySQL.MYSQL_DATABASE}}"
                    },
                    "DB_PASSWORD": {
                      "isOptional": false,
                      "description": "Scoped database user password",
                      "defaultValue": "${{MySQL.MYSQL_PASSWORD}}"
                    },
                    "DB_USERNAME": {
                      "isOptional": false,
                      "description": "Scoped, non-root database user",
                      "defaultValue": "${{MySQL.MYSQL_USER}}"
                    },
                    "MAIL_MAILER": {
                      "isOptional": false,
                      "description": "Change to smtp before real users",
                      "defaultValue": "log"
                    },
                    "APP_TIMEZONE": {
                      "isOptional": false,
                      "description": "Panel-wide timezone",
                      "defaultValue": "UTC"
                    },
                    "CACHE_DRIVER": {
                      "isOptional": false,
                      "description": "Cache driver, legacy name",
                      "defaultValue": "redis"
                    },
                    "HASHIDS_SALT": {
                      "isOptional": false,
                      "description": "Salt for public server identifiers",
                      "defaultValue": "{{HASHIDS_SALT}}"
                    },
                    "QUEUE_DRIVER": {
                      "isOptional": false,
                      "description": "Queue driver, legacy name",
                      "defaultValue": "redis"
                    },
                    "ADMIN_PASSWORD": {
                      "isOptional": false,
                      "description": "First admin password",
                      "defaultValue": "{{ADMIN_PASSWORD}}"
                    },
                    "ADMIN_USERNAME": {
                      "isOptional": false,
                      "description": "First admin username",
                      "defaultValue": "admin"
                    },
                    "HASHIDS_LENGTH": {
                      "isOptional": false,
                      "description": "Length of generated hashids",
                      "defaultValue": "8"
                    },
                    "MAIL_FROM_NAME": {
                      "isOptional": false,
                      "description": "Outgoing sender display name",
                      "defaultValue": "Pterodactyl Panel"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Redis auth password",
                      "defaultValue": "${{Redis.REDIS_PASSWORD}}"
                    },
                    "SESSION_DRIVER": {
                      "isOptional": false,
                      "description": "Store sessions in Redis",
                      "defaultValue": "redis"
                    },
                    "TRUSTED_PROXIES": {
                      "isOptional": false,
                      "description": "Railway edge proxy ranges",
                      "defaultValue": "100.64.0.0/10,fd00::/8"
                    },
                    "QUEUE_CONNECTION": {
                      "isOptional": false,
                      "description": "Queue driver, Laravel 11+ name",
                      "defaultValue": "redis"
                    },
                    "MAIL_FROM_ADDRESS": {
                      "isOptional": false,
                      "description": "Outgoing sender address",
                      "defaultValue": "noreply@example.com"
                    },
                    "APP_SERVICE_AUTHOR": {
                      "isOptional": false,
                      "description": "Author stamped on seeded eggs",
                      "defaultValue": "admin@example.com"
                    },
                    "APP_ENVIRONMENT_ONLY": {
                      "isOptional": false,
                      "description": "Also read settings from database",
                      "defaultValue": "false"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:80": {
                        "port": 80
                      }
                    }
                  },
                  "volumeMounts": {
                    "1d6512ce-f238-4617-b092-7e858e4b0c05": {
                      "mountPath": "/app/var"
                    }
                  }
                },
                "b537992f-06b2-45ae-8859-420cfc375de6": {
                  "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\"",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "redis:8.2.1"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "description": "Private hostname, reachable only inside the project",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Standard Redis port",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Default ACL user created on first boot",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private connection string, use this from other services",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Convenience alias of the generated password",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated password for the default user",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    },
                    "REDIS_PUBLIC_URL": {
                      "description": "Public connection string over the TCP proxy, for external tools",
                      "defaultValue": "redis://default:${{REDIS_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}"
                    }
                  },
                  "volumeMounts": {
                    "b537992f-06b2-45ae-8859-420cfc375de6": {
                      "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."
                  }
                },
                "cf906453-e006-4fb6-ad84-13e12634ff00": {
                  "icon": "https://devicons.railway.app/i/mysql.svg",
                  "name": "MySQL",
                  "deploy": {
                    "startCommand": "docker-entrypoint.sh mysqld --innodb-use-native-aio=0 --disable-log-bin --performance_schema=0 --innodb-buffer-pool-size=1G",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "mysql:9.4"
                  },
                  "variables": {
                    "MYSQLHOST": {
                      "isOptional": false,
                      "description": "Private hostname, never publicly exposed",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "MYSQLPORT": {
                      "isOptional": false,
                      "description": "MySQL port on the private network",
                      "defaultValue": "3306"
                    },
                    "MYSQLUSER": {
                      "isOptional": false,
                      "description": "Superuser; give the app a scoped user instead",
                      "defaultValue": "root"
                    },
                    "MYSQL_URL": {
                      "isOptional": false,
                      "description": "Private-network connection string",
                      "defaultValue": "mysql://${{MYSQLUSER}}:${{MYSQL_ROOT_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:3306/${{MYSQL_DATABASE}}"
                    },
                    "MYSQLDATABASE": {
                      "isOptional": false,
                      "description": "Alias consumers reference as ${{MySQL.MYSQLDATABASE}}",
                      "defaultValue": "${{MYSQL_DATABASE}}"
                    },
                    "MYSQLPASSWORD": {
                      "isOptional": false,
                      "description": "Alias of the root password",
                      "defaultValue": "${{MYSQL_ROOT_PASSWORD}}"
                    },
                    "MYSQL_DATABASE": {
                      "isOptional": false,
                      "description": "Database created on first init",
                      "defaultValue": "railway"
                    },
                    "MYSQL_PUBLIC_URL": {
                      "description": "External connection string; empty host/port until a TCP proxy exists",
                      "defaultValue": "mysql://${{MYSQLUSER}}:${{MYSQL_ROOT_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{MYSQL_DATABASE}}"
                    },
                    "MYSQL_ROOT_PASSWORD": {
                      "isOptional": false,
                      "description": "Root password, generated once at init — read only when the data dir is created",
                      "defaultValue": "{{MYSQL_ROOT_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "cf906453-e006-4fb6-ad84-13e12634ff00": {
                      "mountPath": "/var/lib/mysql"
                    }
                  },
                  "haTemplateCode": "mysql-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxies",
                      "options": [
                        1,
                        2
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "HAProxy instances routing writes to the primary",
                      "defaultValue": 2
                    },
                    "replica": {
                      "label": "MySQL Replicas",
                      "options": [
                        2,
                        4,
                        6,
                        8
                      ],
                      "nodeLabel": "MySQL",
                      "description": "Requires odd count for quorum",
                      "defaultValue": 2
                    },
                    "internal": null,
                    "description": "This will convert your MySQL instance to an HA cluster with Group Replication failover and HAProxy routing to the primary.",
                    "supportedImageMajorVersions": [
                      8,
                      9
                    ]
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "panel",
      "method": "GET",
      "path": "/auth/login",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 3,
    "needs_volume": true
  },
  "generated_at": "2026-09-17T22:14:38.342Z",
  "generator_version": "0.1.0",
  "status": "degraded",
  "validated_at": "2026-09-17T10:43:34.627Z",
  "success_rate_30d": 0,
  "validation": {
    "last_run_id": "run_3927f87af2ba49cda1d8",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": false,
        "detail": "FAILED,SUCCESS,SUCCESS"
      }
    ]
  }
}
