{
  "lexicon": 1,
  "id": "app.bsky.unspecced.getSuggestedUsersForDiscover",
  "defs": {
    "main": {
      "type": "query",
      "description": "Get a list of suggested users for the Discover page",
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 25
          }
        }
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["actors"],
          "properties": {
            "actors": {
              "type": "array",
              "items": {
                "type": "ref",
                "ref": "app.bsky.actor.defs#profileView"
              }
            },
            "recIdStr": {
              "type": "string",
              "description": "Snowflake for this recommendation, use when submitting recommendation events."
            }
          }
        }
      }
    }
  }
}

