social.clippr.feed.defs

clippr.social

Documentation

clipView object

A view of a single bookmark (or 'clip').

Properties

cid string cid Required

The CID of the clip

indexedAt string datetime Required

When the tag was first indexed by the AppView

record unknown Required

The raw record of the clip

uri string at-uri Required

The AT-URI of the clip

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid",
    "author",
    "record",
    "indexedAt"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid",
      "description": "The CID of the clip"
    },
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "The AT-URI of the clip"
    },
    "author": {
      "ref": "social.clippr.actor.defs#profileView",
      "type": "ref",
      "description": "A reference to the actor's profile"
    },
    "record": {
      "type": "unknown",
      "description": "The raw record of the clip"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime",
      "description": "When the tag was first indexed by the AppView"
    }
  },
  "description": "A view of a single bookmark (or 'clip')."
}
tagView object

A view of a single tag.

Properties

cid string cid Required

The CID of the tag

indexedAt string datetime Required

When the tag was first indexed by the AppView

record unknown Required

The raw record of the tag

uri string at-uri Required

The AT-URI to the tag

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid",
    "author",
    "record",
    "indexedAt"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid",
      "description": "The CID of the tag"
    },
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "The AT-URI to the tag"
    },
    "author": {
      "ref": "social.clippr.actor.defs#profileView",
      "type": "ref",
      "description": "A reference to the actor's profile"
    },
    "record": {
      "type": "unknown",
      "description": "The raw record of the tag"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime",
      "description": "When the tag was first indexed by the AppView"
    }
  },
  "description": "A view of a single tag."
}

Lexicon Garden

@