app.thedistance.follow

thedistance.app

Documentation

Record declaring a social 'follow' relationship with another account. Duplicate follows will be ignored by the AppView.

main record

Record declaring a social 'follow' relationship with another account. Duplicate follows will be ignored by the AppView.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp of when the follow was created.

subject string did Required

DID of the account being followed.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "createdAt"
    ],
    "properties": {
      "subject": {
        "type": "string",
        "format": "did",
        "description": "DID of the account being followed."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of when the follow was created."
      }
    }
  },
  "description": "Record declaring a social 'follow' relationship with another account. Duplicate follows will be ignored by the AppView."
}

Lexicon Garden

@