Douglass.network Schemas

Account session json-table

douglass.network/account-session

Internal record of active session with a user account.

{
  "id": "douglass.network/account-session",
  "title": "Account session",
  "description": "Internal record of active session with a user account.",
  "type": "json-table",
  "definition": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "required": [
      "sessionId",
      "username",
      "createdAt"
    ],
    "properties": {
      "sessionId": {
        "type": "string"
      },
      "username": {
        "type": "string"
      },
      "createdAt": {
        "type": "string",
        "format": "date-time"
      }
    }
  }
}

Schemas