Skip to main content

Documentation Index

Fetch the complete documentation index at: https://superdoc-caio-pizzol-sd-3104-metadata-api.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Summary

List anchored-metadata entries in the document, optionally filtered by consumer namespace and/or a within selection (returns only entries whose anchor overlaps within).
  • Operation ID: metadata.list
  • API member path: editor.doc.metadata.list(...)
  • Mutates document: no
  • Idempotency: idempotent
  • Supports tracked mode: no
  • Supports dry run: no
  • Deterministic target resolution: yes

Expected result

Returns an AnchoredMetadataListResult with summary entries (no payload); fetch payload via get.

Input fields

FieldTypeRequiredDescription
limitintegerno
namespacestringno
offsetintegerno
withinSelectionTargetnoSelectionTarget
within.endSelectionPointnoSelectionPoint
within.kind"selection"noConstant: "selection"
within.startSelectionPointnoSelectionPoint

Example request

{
  "limit": 50,
  "offset": 0
}

Output fields

No fields.

Example response

{}

Pre-apply throws

  • CAPABILITY_UNAVAILABLE
  • INVALID_INPUT

Non-applied failure codes

  • None

Raw schemas

{
  "additionalProperties": false,
  "properties": {
    "limit": {
      "minimum": 1,
      "type": "integer"
    },
    "namespace": {
      "type": "string"
    },
    "offset": {
      "minimum": 0,
      "type": "integer"
    },
    "within": {
      "$ref": "#/$defs/SelectionTarget"
    }
  },
  "type": "object"
}
{
  "type": "object"
}