com.lopecode.bundle

larkworthy.bsky.social

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

files array of ref #fileEntry Required

No description available.

title string Required

No description available.

maxLength: 200 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "files",
      "createdAt"
    ],
    "properties": {
      "files": {
        "type": "array",
        "items": {
          "ref": "#fileEntry",
          "type": "ref"
        }
      },
      "title": {
        "type": "string",
        "maxLength": 200
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  }
}
fileEntry object

No description available.

Properties

blob blob Required

atproto blob ref — CID (v1 raw + sha-256), mimeType, size

encoding string Required

No description available.

id string Required

Script tag id, e.g. `@user/module`, `@user/module/asset.png`, `bootconf.json`

maxLength: 1000 bytes
View raw schema
{
  "type": "object",
  "required": [
    "id",
    "encoding",
    "blob"
  ],
  "properties": {
    "id": {
      "type": "string",
      "maxLength": 1000,
      "description": "Script tag id, e.g. `@user/module`, `@user/module/asset.png`, `bootconf.json`"
    },
    "blob": {
      "type": "blob",
      "description": "atproto blob ref — CID (v1 raw + sha-256), mimeType, size"
    },
    "encoding": {
      "enum": [
        "text",
        "base64"
      ],
      "type": "string"
    }
  }
}

Lexicon Garden

@