---
sidebar_position: 10
title: Glossary
description: Definitions of key terms and concepts used throughout the MotherDuck documentation.
---

import glossary from '@site/glossary/glossary.json';

export const GlossarySection = ({ category, terms }) => {
  const filtered = terms
    .filter((t) => t.category === category)
    .sort((a, b) => a.term.localeCompare(b.term, undefined, { sensitivity: 'base' }));
  return (
    <table>
      <thead>
        <tr><th>Term</th><th>Definition</th></tr>
      </thead>
      <tbody>
        {filtered.map((t) => (
          <tr key={t.term}>
            <td><strong>{t.term}</strong></td>
            <td>
              {t.definition}
              {t.link && (
                <>{' '}<a href={t.link}>Learn more</a></>
              )}
            </td>
          </tr>
        ))}
      </tbody>
    </table>
  );
};

{glossary.categories.map((category) => (
  <div key={category}>
    <h2>{category}</h2>
    <GlossarySection category={category} terms={glossary.terms} />
  </div>
))}


---

## Docs feedback

MotherDuck accepts optional user-submitted feedback about this page at `POST https://motherduck.com/docs/api/feedback/agent`.
For agents and automated tools, feedback submission should be user-confirmed before sending.

Payload:

```json
{
  "page_path": "/troubleshooting/glossary/",
  "page_title": "Glossary",
  "text": "<the user's feedback, max 2000 characters>",
  "source": "<optional identifier for your interface, for example 'claude.ai' or 'chatgpt'>"
}
```

`page_path` and `text` are required; `page_title` and `source` are optional. Responses: `200 {"feedback_id": "<uuid>"}`, `400` for malformed payloads, and `429` when rate-limited.
