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

# List settings groups with their resolved field values

> Return every registered settings group with per-field current values.

Each group carries the settings class' field metadata plus a ``value`` per
field, resolved with pydantic-settings precedence: ``os.environ`` wins (in
k8s config mode the cluster injects vars the dotenv store never sees), then
the stored env override, then the field default. Nested-group reference
fields (``env_var == ""``) are non-editable and report ``value: null``.
Secret fields report their real value — this authed surface round-trips
values through the editor; masking is display-side only, never on the wire.

Only IMPORTED settings classes appear: in a running skeleton the kit,
skeleton, and manifest-loaded plugin modules — the intended scope.



## OpenAPI

````yaml /openapi.json get /api/config/settings-schema
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 0.1.1
servers: []
security: []
paths:
  /api/config/settings-schema:
    get:
      tags:
        - config
      summary: List settings groups with their resolved field values
      description: >-
        Return every registered settings group with per-field current values.


        Each group carries the settings class' field metadata plus a ``value``
        per

        field, resolved with pydantic-settings precedence: ``os.environ`` wins
        (in

        k8s config mode the cluster injects vars the dotenv store never sees),
        then

        the stored env override, then the field default. Nested-group reference

        fields (``env_var == ""``) are non-editable and report ``value: null``.

        Secret fields report their real value — this authed surface round-trips

        values through the editor; masking is display-side only, never on the
        wire.


        Only IMPORTED settings classes appear: in a running skeleton the kit,

        skeleton, and manifest-loaded plugin modules — the intended scope.
      operationId: get_api_config_settings_schema
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                required:
                  - data
                type: object
          description: Success.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      properties:
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````