> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Question Metadata

> Hyperliquid HIP-4 question metadata snapshots.

The `hyperliquid.raw.question_metadata` table contains snapshots of Hyperliquid HIP-4 questions. A question groups two or more named outcomes plus a fallback outcome ("Other"). Recurring price-binary outcomes are not grouped under a question.

## Table Columns

| Column Name              | Description                                                                             |
| ------------------------ | --------------------------------------------------------------------------------------- |
| timestamp                | UTC timestamp of the snapshot.                                                          |
| question                 | The question ID (numeric). Groups outcomes via `named_outcomes` and `fallback_outcome`. |
| name                     | Question display name.                                                                  |
| description              | Question description.                                                                   |
| fallback\_outcome        | The outcome ID representing the fallback / "Other" choice for this question.            |
| named\_outcomes          | VARIANT array of outcome IDs that are explicitly named under this question.             |
| settled\_named\_outcomes | VARIANT array of outcome IDs that have settled. Empty until the question resolves.      |
| \_created\_at            | Row creation timestamp.                                                                 |
| \_updated\_at            | Row last update timestamp.                                                              |

## Sample Query

```sql theme={null}
SELECT
  timestamp,
  question,
  name,
  fallback_outcome,
  named_outcomes,
  settled_named_outcomes
FROM hyperliquid.raw.question_metadata
WHERE TO_DATE(timestamp) >= CURRENT_DATE - 7
ORDER BY timestamp DESC, question
LIMIT 100
```
