pub.chive.actor.mute

chive.pub

Documentation

Mute an author to hide their content from feeds

main record

Mute an author to hide their content from feeds

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

schemaRevision integer Optional

Schema revision this record was created with. Absent means revision 1.

minimum: 1
subjectDid string did Required

DID of the muted author

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subjectDid",
      "createdAt"
    ],
    "properties": {
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "subjectDid": {
        "type": "string",
        "format": "did",
        "description": "DID of the muted author"
      },
      "schemaRevision": {
        "type": "integer",
        "minimum": 1,
        "description": "Schema revision this record was created with. Absent means revision 1."
      }
    }
  },
  "description": "Mute an author to hide their content from feeds"
}

Lexicon Garden

@