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

# The extract object

> A durable Plane-addressable quote that backs citation blocks.

<ResponseField name="id" type="string">
  Unique identifier for the extract, prefixed `extr_`.
</ResponseField>

<ResponseField name="object" type="string">
  Always `extract`.
</ResponseField>

<ResponseField name="workspace" type="string">
  Workspace scope. Global legal-provision extracts return `null`.
</ResponseField>

<ResponseField name="source" type="object">
  A typed reference to the provision the quote was extracted from: `object`
  (e.g. `legal.provision`) and the stable `id` (e.g. `lpv_…`). Resolve the
  provision's details through the provision endpoint.
</ResponseField>

<ResponseField name="jurisdiction" type="object">
  Jurisdiction for the quoted source.
</ResponseField>

<ResponseField name="quote" type="string | null">
  Verbatim quote verified against the pinned text version, when present.
</ResponseField>

<ResponseField name="language" type="string">
  Language of the pinned text version.
</ResponseField>

<ResponseField name="url" type="string">
  Permanent Plane URL for the extract page.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "extr_9XkQw2NvR4pYtJ",
    "object": "extract",
    "workspace": null,
    "source": { "object": "legal.provision", "id": "lpv_7RmKw3QvT9pXsL" },
    "jurisdiction": { "country": "GB" },
    "quote": "not less than one week's notice",
    "language": "en",
    "url": "https://manage.plane.com/extracts/extr_9XkQw2NvR4pYtJ",
    "created": "2026-06-13T00:00:00Z",
    "updated": "2026-06-13T00:00:00Z"
  }
  ```
</ResponseExample>
