app.dropanchor.like

dropanchor.app

Documentation

A like record for check-ins in the Anchor app

main record

A like record for check-ins in the Anchor app

Record Key tid Timestamp-based ID

Properties

checkinRef ref #strongRef Required

Reference to the check-in being liked

createdAt string datetime Required

When the like was created

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt",
      "checkinRef"
    ],
    "properties": {
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the like was created"
      },
      "checkinRef": {
        "ref": "#strongRef",
        "type": "ref",
        "description": "Reference to the check-in being liked"
      }
    }
  },
  "description": "A like record for check-ins in the Anchor app"
}
strongRef object

A strong reference to another record

Properties

cid string cid Required

Content identifier (CID) of the referenced record

uri string at-uri Required

AT Protocol URI of the referenced record

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid",
      "description": "Content identifier (CID) of the referenced record"
    },
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT Protocol URI of the referenced record"
    }
  },
  "description": "A strong reference to another record"
}

Lexicon Garden

@