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

# List all connector types that have a knowledge fragment

> List all knowledge fragment templates across all connectors.

Discovers every ``knowledge_fragment*.yaml`` file under each connector
directory, so connectors with multiple fragments (e.g. tickets, engagements)
are fully represented — one entry per file.

Each entry returns the **full template data**: ``connector_type``, ``connector``,
``name``, ``label``, ``duckdb_table``, ``duckdb_table_hint``, ``sla_minutes``,
``text_fields``, ``filter_fields``, ``payload_fields``, and ``preprocessors``.

PRD-008 Section 10.9



## OpenAPI

````yaml /api-reference/catalog-api.json get /connectors/knowledge-fragments
openapi: 3.1.0
info:
  title: Strattum Catalog API
  description: Expõe a estrutura do data lake — camadas, conectores e tabelas.
  version: 0.1.0
servers: []
security: []
paths:
  /connectors/knowledge-fragments:
    get:
      tags:
        - connectors
      summary: List all connector types that have a knowledge fragment
      description: >-
        List all knowledge fragment templates across all connectors.


        Discovers every ``knowledge_fragment*.yaml`` file under each connector

        directory, so connectors with multiple fragments (e.g. tickets,
        engagements)

        are fully represented — one entry per file.


        Each entry returns the **full template data**: ``connector_type``,
        ``connector``,

        ``name``, ``label``, ``duckdb_table``, ``duckdb_table_hint``,
        ``sla_minutes``,

        ``text_fields``, ``filter_fields``, ``payload_fields``, and
        ``preprocessors``.


        PRD-008 Section 10.9
      operationId: list_knowledge_fragments_connectors_knowledge_fragments_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  additionalProperties: true
                  type: object
                type: array
                title: >-
                  Response List Knowledge Fragments Connectors Knowledge
                  Fragments Get

````