# at.askimut.question

> Published by [ask.3615etienne.com](https://lexicon.garden/identity/did:plc:7yidlxzkmtk2d5zwljdlhg3f)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.question)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.question/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.question/examples)

## Definitions

### `at.askimut.question`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No | Optional tags for categorizing the question |
| `content` | `string` | Yes | The question content |
| `authorDid` | `string` (did) | Yes | DID of the user asking the question |
| `createdAt` | `string` (datetime) | Yes | When the question was created |
| `sourceUri` | `string` (uri) | No | Original URI from the source platform (e.g., Bluesky post URI) |
| `targetDid` | `string` (did) | Yes | DID of the user being asked |
| `sourceData` | `unknown` | No | Platform-specific metadata and additional data |
| `sourceType` | `string` | Yes | The platform/source where this question originated |

## Raw Schema

```json
{
  "id": "at.askimut.question",
  "defs": {
    "main": {
      "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"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
