at.askimut.question

ask.3615etienne.com

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

authorDid string did Required

DID of the user asking the question

content string Required

The question content

maxLength: 1000 bytesminLength: 1 bytes
createdAt string datetime Required

When the question was created

sourceData unknown Optional

Platform-specific metadata and additional data

sourceType string Required

The platform/source where this question originated

Allowed: askimut, bsky, standard.site, mastodon, nostr
sourceUri string uri Optional

Original URI from the source platform (e.g., Bluesky post URI)

tags array of string Optional

Optional tags for categorizing the question

maxLength: 10 items
targetDid string did Required

DID of the user being asked

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "content",
      "targetDid",
      "authorDid",
      "sourceType",
      "createdAt"
    ],
    "properties": {
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 50
        },
        "maxLength": 10,
        "description": "Optional tags for categorizing the question"
      },
      "content": {
        "type": "string",
        "maxLength": 1000,
        "minLength": 1,
        "description": "The question content"
      },
      "authorDid": {
        "type": "string",
        "format": "did",
        "description": "DID of the user asking the question"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the question was created"
      },
      "sourceUri": {
        "type": "string",
        "format": "uri",
        "description": "Original URI from the source platform (e.g., Bluesky post URI)"
      },
      "targetDid": {
        "type": "string",
        "format": "did",
        "description": "DID of the user being asked"
      },
      "sourceData": {
        "type": "unknown",
        "description": "Platform-specific metadata and additional data"
      },
      "sourceType": {
        "enum": [
          "askimut",
          "bsky",
          "standard.site",
          "mastodon",
          "nostr"
        ],
        "type": "string",
        "description": "The platform/source where this question originated"
      }
    }
  }
}

Lexicon Garden

@