> ## 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 available source type definitions



## OpenAPI

````yaml /api-reference/knowledge-api.json get /v1/knowledge/source-types
openapi: 3.1.0
info:
  title: Strattum Knowledge API
  description: >-
    REST API that serves semantic document search — embeddings via the
    configured LLM provider, indexed in Qdrant, with metadata stored in
    PostgreSQL. (PRD-004, Workstream 1.4)
  version: 1.0.0
servers: []
security: []
paths:
  /v1/knowledge/source-types:
    get:
      tags:
        - source-types
      summary: List available source type definitions
      operationId: list_source_types_v1_knowledge_source_types_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SourceTypesResponse'
components:
  schemas:
    SourceTypesResponse:
      properties:
        source_types:
          items:
            $ref: '#/components/schemas/SourceTypeSummary'
          type: array
          title: Source Types
        count:
          type: integer
          title: Count
      type: object
      required:
        - source_types
        - count
      title: SourceTypesResponse
    SourceTypeSummary:
      properties:
        name:
          type: string
          title: Name
        display_name:
          type: string
          title: Display Name
        label:
          type: string
          title: Label
          default: ''
        duckdb_table:
          type: string
          title: Duckdb Table
        sla_minutes:
          type: integer
          title: Sla Minutes
        text_fields:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Text Fields
        filter_fields:
          items:
            type: string
          type: array
          title: Filter Fields
      type: object
      required:
        - name
        - display_name
        - duckdb_table
        - sla_minutes
      title: SourceTypeSummary

````