appBskyFeedGetLikes top-level constant

Map<String, dynamic> const appBskyFeedGetLikes

app.bsky.feed.getLikes

Implementation

const appBskyFeedGetLikes = <String, dynamic>{
  "lexicon": 1,
  "id": "app.bsky.feed.getLikes",
  "defs": {
    "main": {
      "type": "query",
      "description":
          "Get like records which reference a subject (by AT-URI and CID).",
      "parameters": {
        "type": "params",
        "required": ["uri"],
        "properties": {
          "uri": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the subject (eg, a post record)."
          },
          "cid": {
            "type": "string",
            "format": "cid",
            "description":
                "CID of the subject record (aka, specific version of record), to filter likes."
          },
          "limit": {
            "type": "integer",
            "default": 50,
            "minimum": 1,
            "maximum": 100
          },
          "cursor": {"type": "string"}
        }
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["uri", "likes"],
          "properties": {
            "uri": {"type": "string", "format": "at-uri"},
            "cid": {"type": "string", "format": "cid"},
            "cursor": {"type": "string"},
            "likes": {
              "type": "array",
              "items": {"type": "ref", "ref": "#like"}
            }
          }
        }
      }
    },
    "like": {
      "type": "object",
      "required": ["indexedAt", "createdAt", "actor"],
      "properties": {
        "indexedAt": {"type": "string", "format": "datetime"},
        "createdAt": {"type": "string", "format": "datetime"},
        "actor": {"type": "ref", "ref": "app.bsky.actor.defs#profileView"}
      }
    }
  }
};