com.atiproto.profile

atiproto.com

Documentation

A record representing a user's tipping/subscription settings

main record

A record representing a user's tipping/subscription settings

Record Key literal:self Fixed literal value

Properties

acceptsItems boolean Optional

Whether user accepts items (default: true)

acceptsSubscriptions boolean Optional

Whether user accepts subscriptions (default: true)

createdAt string datetime Required

Creation timestamp

disableReceiptNotifications boolean Optional

Opt out of payment receipt DMs (default: false)

updatedAt string datetime Optional

Last update timestamp

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt"
    ],
    "properties": {
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Creation timestamp"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Last update timestamp"
      },
      "acceptsItems": {
        "type": "boolean",
        "description": "Whether user accepts items (default: true)"
      },
      "acceptsSubscriptions": {
        "type": "boolean",
        "description": "Whether user accepts subscriptions (default: true)"
      },
      "disableReceiptNotifications": {
        "type": "boolean",
        "description": "Opt out of payment receipt DMs (default: false)"
      }
    }
  },
  "description": "A record representing a user's tipping/subscription settings"
}
view object

View of a user's profile settings for use in API responses

Properties

acceptsItems boolean Optional

Whether user accepts items (default: true)

acceptsSubscriptions boolean Optional

Whether user accepts subscriptions (default: true)

createdAt string datetime Required

Creation timestamp

disableReceiptNotifications boolean Optional

Opt out of payment receipt DMs (default: false)

updatedAt string datetime Optional

Last update timestamp

uri string at-uri Required

AT-URI of the profile record

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "createdAt"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the profile record"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime",
      "description": "Creation timestamp"
    },
    "updatedAt": {
      "type": "string",
      "format": "datetime",
      "description": "Last update timestamp"
    },
    "acceptsItems": {
      "type": "boolean",
      "description": "Whether user accepts items (default: true)"
    },
    "acceptsSubscriptions": {
      "type": "boolean",
      "description": "Whether user accepts subscriptions (default: true)"
    },
    "disableReceiptNotifications": {
      "type": "boolean",
      "description": "Opt out of payment receipt DMs (default: false)"
    }
  },
  "description": "View of a user's profile settings for use in API responses"
}

Lexicon Garden

@