Douglass.network Schemas

Notifications Index json-table

douglass.network/notification-idx

An index of activity relevant to a given user

{
  "id": "douglass.network/notification-idx",
  "title": "Notifications Index",
  "description": "An index of activity relevant to a given user",
  "type": "json-table",
  "keyTemplate": [
    {
      "type": "json-pointer",
      "value": "/subjectUserId"
    },
    {
      "type": "string",
      "value": ":"
    },
    {
      "type": "json-pointer",
      "value": "/idxkey"
    }
  ],
  "definition": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "required": [
      "subjectUserId",
      "idxkey",
      "itemUrl",
      "createdAt"
    ],
    "properties": {
      "subjectUserId": {
        "type": "string",
        "pattern": ".+@.+"
      },
      "idxkey": {
        "type": "string"
      },
      "itemUrl": {
        "type": "string",
        "format": "uri"
      },
      "createdAt": {
        "type": "string",
        "format": "date-time"
      }
    }
  }
}

Schemas