appBskyGraphGetStarterPack top-level constant

Map<String, dynamic> const appBskyGraphGetStarterPack

app.bsky.graph.getStarterPack

Implementation

const appBskyGraphGetStarterPack = <String, dynamic>{
  "lexicon": 1,
  "id": "app.bsky.graph.getStarterPack",
  "defs": {
    "main": {
      "type": "query",
      "description": "Gets a view of a starter pack.",
      "parameters": {
        "type": "params",
        "required": ["starterPack"],
        "properties": {
          "starterPack": {
            "type": "string",
            "format": "at-uri",
            "description": "Reference (AT-URI) of the starter pack record."
          }
        }
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["starterPack"],
          "properties": {
            "starterPack": {
              "type": "ref",
              "ref": "app.bsky.graph.defs#starterPackView"
            }
          }
        }
      }
    }
  }
};