app.kimbia.share

kimbia.app

Documentation

One social share of a Kimbia activity or adventure (e.g. a post to Bluesky). A share is public by nature - it links the external post back to the underlying activity record.

main record

One social share of a Kimbia activity or adventure (e.g. a post to Bluesky). A share is public by nature - it links the external post back to the underlying activity record.

Record Key tid Timestamp-based ID

Properties

activityRef string Optional

AT-URI of the published activity (or adventure) record this share is about. Absent until the underlying record is itself published.

maxLength: 2048 bytes
createdAt string datetime Required

When the share was created.

externalUri string Required

AT-URI of the published external post (e.g. the Bluesky post).

maxLength: 2048 bytes
image blob Required

The baked share card image.

maxSize: 2.0 MB
layout string Required

The visual layout used to render the share card.

maxLength: 128 bytes
Known values: laUne, feuillet
platform string Required

Where this share was posted.

maxLength: 128 bytes
Known values: bsky
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "platform",
      "layout",
      "externalUri",
      "image",
      "createdAt"
    ],
    "properties": {
      "image": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 2000000,
        "description": "The baked share card image."
      },
      "layout": {
        "type": "string",
        "maxLength": 128,
        "description": "The visual layout used to render the share card.",
        "knownValues": [
          "laUne",
          "feuillet"
        ]
      },
      "platform": {
        "type": "string",
        "maxLength": 128,
        "description": "Where this share was posted.",
        "knownValues": [
          "bsky"
        ]
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the share was created."
      },
      "activityRef": {
        "type": "string",
        "maxLength": 2048,
        "description": "AT-URI of the published activity (or adventure) record this share is about. Absent until the underlying record is itself published."
      },
      "externalUri": {
        "type": "string",
        "maxLength": 2048,
        "description": "AT-URI of the published external post (e.g. the Bluesky post)."
      }
    }
  },
  "description": "One social share of a Kimbia activity or adventure (e.g. a post to Bluesky). A share is public by nature - it links the external post back to the underlying activity record."
}

Lexicon Garden

@