app.beaconbits.favorite

beaconbits.app

Documentation

A favorite relationship to another user

main record

A favorite relationship to another user

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the favorite was created

subject string did Required

DID of the user being favorited

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "createdAt"
    ],
    "properties": {
      "subject": {
        "type": "string",
        "format": "did",
        "description": "DID of the user being favorited"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the favorite was created"
      }
    }
  },
  "description": "A favorite relationship to another user"
}

Lexicon Garden

@