# at.askimut.answerContent

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

## Definitions

### `at.askimut.answerContent`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `string` | Yes | The answer content text |
| `authorDid` | `string` (did) | Yes | DID of the user who wrote this answer content |
| `createdAt` | `string` (datetime) | Yes | When the answer content was created |

## Raw Schema

```json
{
  "id": "at.askimut.answerContent",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "content",
          "authorDid",
          "createdAt"
        ],
        "properties": {
          "content": {
            "type": "string",
            "maxLength": 5000,
            "minLength": 1,
            "description": "The answer content text"
          },
          "authorDid": {
            "type": "string",
            "format": "did",
            "description": "DID of the user who wrote this answer content"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the answer content was created"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
