# fyi.questionable.graph.answer

> Published by [questionable.fyi](https://lexicon.garden/identity/did:plc:2tpqeou2twn2lvronqe2ipoi)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2tpqeou2twn2lvronqe2ipoi/fyi.questionable.graph.answer)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2tpqeou2twn2lvronqe2ipoi/fyi.questionable.graph.answer/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2tpqeou2twn2lvronqe2ipoi/fyi.questionable.graph.answer/examples)

## Definitions

### `fyi.questionable.graph.answer`

**Type**: `record`

A proposed answer to a question

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `ref` → `fyi.questionable.richtext.content` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `languages` | `array` | No |  |
| `questionRef` | `ref` → `com.atproto.repo.strongRef` | Yes | Indicates the question to which this is a proposed answer to |

## Raw Schema

```json
{
  "id": "fyi.questionable.graph.answer",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "questionRef",
          "content",
          "createdAt"
        ],
        "properties": {
          "content": {
            "ref": "fyi.questionable.richtext.content",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "languages": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "language"
            },
            "maxLength": 3
          },
          "questionRef": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Indicates the question to which this is a proposed answer to"
          }
        }
      },
      "description": "A proposed answer to a question"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
