app.atbuddy.interaction

atbuddy.app

Documentation

A buddy interaction event. TID-keyed, many per account.

main record

A buddy interaction event. TID-keyed, many per account.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

item string Optional

No description available.

maxLength: 128 bytes
targetDid string did Optional

A decentralized identifier (DID).

type string Required

The kind of interaction.

Known values: pet, feed, gift, greet, battle
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "type",
      "createdAt"
    ],
    "properties": {
      "item": {
        "type": "string",
        "maxLength": 128
      },
      "type": {
        "type": "string",
        "description": "The kind of interaction.",
        "knownValues": [
          "pet",
          "feed",
          "gift",
          "greet",
          "battle"
        ]
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "targetDid": {
        "type": "string",
        "format": "did"
      }
    }
  },
  "description": "A buddy interaction event. TID-keyed, many per account."
}

Lexicon Garden

@