social.coves.community.subscription

coves.social

Documentation

A subscription to a community

main record

A subscription to a community

Record Key tid Timestamp-based ID

Properties

contentVisibility integer Optional

Content visibility level (1=only best content, 5=all content)

minimum: 1maximum: 5
Default: 3
createdAt string datetime Required

When the subscription started

endedAt string datetime Optional

When the subscription ended (null if current)

subject string did Required

DID of the community being subscribed to

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "createdAt"
    ],
    "properties": {
      "endedAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the subscription ended (null if current)"
      },
      "subject": {
        "type": "string",
        "format": "did",
        "description": "DID of the community being subscribed to"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the subscription started"
      },
      "contentVisibility": {
        "type": "integer",
        "default": 3,
        "maximum": 5,
        "minimum": 1,
        "description": "Content visibility level (1=only best content, 5=all content)"
      }
    }
  },
  "description": "A subscription to a community"
}

Lexicon Garden

@