appBskyFeedRepost top-level constant

Map<String, dynamic> const appBskyFeedRepost

app.bsky.feed.repost

Implementation

const appBskyFeedRepost = <String, dynamic>{
  "lexicon": 1,
  "id": "app.bsky.feed.repost",
  "defs": {
    "main": {
      "type": "record",
      "description":
          "Record representing a 'repost' of an existing Bluesky post.",
      "key": "tid",
      "record": {
        "type": "object",
        "required": ["subject", "createdAt"],
        "properties": {
          "subject": {"type": "ref", "ref": "com.atproto.repo.strongRef"},
          "createdAt": {"type": "string", "format": "datetime"}
        }
      }
    }
  }
};