# at.askimut.answer

> 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.answer)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.answer/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.answer/examples)

## Definitions

### `at.askimut.answer`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `authorDid` | `string` (did) | Yes | DID of the user creating this answer link |
| `createdAt` | `string` (datetime) | Yes | When the answer link was created |
| `questionUri` | `string` (at-uri) | Yes | AT-URI reference to the question being answered |
| `broadcastUri` | `string` (at-uri) | No | Optional AT-URI of the Bluesky broadcast post projecting this native answer to the recipient's feed |
| `crossPostUri` | `string` (at-uri) | No | Optional AT-URI of the Bluesky cross-post reply projecting this answer into the question thread |
| `answerContentUri` | `string` (at-uri) | Yes | AT-URI of the answer content (at.askimut.answer_content or external record) |

## Raw Schema

```json
{
  "id": "at.askimut.answer",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "questionUri",
          "answerContentUri",
          "authorDid",
          "createdAt"
        ],
        "properties": {
          "authorDid": {
            "type": "string",
            "format": "did",
            "description": "DID of the user creating this answer link"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the answer link was created"
          },
          "questionUri": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI reference to the question being answered"
          },
          "broadcastUri": {
            "type": "string",
            "format": "at-uri",
            "description": "Optional AT-URI of the Bluesky broadcast post projecting this native answer to the recipient's feed"
          },
          "crossPostUri": {
            "type": "string",
            "format": "at-uri",
            "description": "Optional AT-URI of the Bluesky cross-post reply projecting this answer into the question thread"
          },
          "answerContentUri": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the answer content (at.askimut.answer_content or external record)"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
