net.atview.account.actor

atview.net

Documentation

Account Actor experiment

main record

Account Actor experiment

Record Key tid Timestamp-based ID

Properties

actor string at-uri Required

AtUri of a user's profile or managed profile

createdAt string datetime Required

An RFC 3339 formatted timestamp.

overrides ref #overrides Optional

Overrides for the profile

type string Optional

Type of the account

maxLength: 640 bytesmaxGraphemes: 64 graphemes
Known values: project, user, organisation, collective
Default: user
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt",
      "actor"
    ],
    "properties": {
      "type": {
        "type": "string",
        "default": "user",
        "maxLength": 640,
        "description": "Type of the account",
        "knownValues": [
          "project",
          "user",
          "organisation",
          "collective"
        ],
        "maxGraphemes": 64
      },
      "actor": {
        "type": "string",
        "format": "at-uri",
        "description": "AtUri of a user's profile or managed profile"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "overrides": {
        "ref": "#overrides",
        "type": "ref",
        "description": "Overrides for the profile"
      }
    }
  },
  "description": "Account Actor experiment"
}
overrides object

No description available.

Properties

avatar string uri Optional

A valid URI.

maxLength: 2048 bytes
description string Optional

No description available.

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
name string Optional

No description available.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
View raw schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 640,
      "maxGraphemes": 64
    },
    "avatar": {
      "type": "string",
      "format": "uri",
      "maxLength": 2048
    },
    "description": {
      "type": "string",
      "maxLength": 2560,
      "maxGraphemes": 256
    }
  },
  "additionalProperties": false
}

Lexicon Garden

@