PeerTube · Schema

WatchedWordsLists

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
id object
listName string
words array
updatedAt string
createdAt string
View JSON Schema on GitHub

JSON Schema

WatchedWordsLists.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/WatchedWordsLists.json",
  "title": "WatchedWordsLists",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/id"
    },
    "listName": {
      "type": "string"
    },
    "words": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "example": "2021-05-04T08:01:01.502000+00:00"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "example": "2021-05-04T08:01:01.502000+00:00"
    }
  }
}