{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/agent-dashboard.schema.json",
  "title": "Agent Dashboard",
  "type": "object",
  "properties": {
    "service": {
      "const": "agent-dashboard"
    },
    "public_path": {
      "const": "/agent-dashboard/"
    },
    "rails": {
      "type": "array"
    },
    "recommended_first_rails": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "dashboard_path": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "service",
    "public_path",
    "rails"
  ]
}