# fyi.questionable.graph.question

> 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.question)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2tpqeou2twn2lvronqe2ipoi/fyi.questionable.graph.question/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2tpqeou2twn2lvronqe2ipoi/fyi.questionable.graph.question/examples)

## Definitions

### `fyi.questionable.graph.question`

**Type**: `record`

A question asked on questionable.fyi

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `ref` → `fyi.questionable.richtext.content` | Yes |  |
| `summary` | `string` | Yes | A short summary of the question |
| `createdAt` | `string` (datetime) | Yes |  |
| `languages` | `array` | No | Indicates human language of the primary text content. |
| `contextRef` | `ref` → `com.atproto.repo.strongRef` | No | Indicates the context in which this question was asked. Currently only fyi.questionable.actor.profile |

## Raw Schema

```json
{
  "id": "fyi.questionable.graph.question",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "summary",
          "content",
          "createdAt"
        ],
        "properties": {
          "content": {
            "ref": "fyi.questionable.richtext.content",
            "type": "ref"
          },
          "summary": {
            "type": "string",
            "maxLength": 3000,
            "minLength": 1,
            "description": "A short summary of the question",
            "maxGraphemes": 300
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "languages": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "language"
            },
            "maxLength": 3,
            "description": "Indicates human language of the primary text content."
          },
          "contextRef": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Indicates the context in which this question was asked. Currently only fyi.questionable.actor.profile"
          }
        }
      },
      "description": "A question asked on questionable.fyi"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
