> ## 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 live references to this preset

> Every live reference a rename of this preset would strand — the SAME full union
the rename door blocks on: the OTHER presets whose active body composes it, plus every
registered referee (platform wiring — schedules/hooks/routes/extensions/parks — and
plugin holders). Exposed so the UI can preflight a rename. 404 for an unknown preset,
the same existence check the rename door runs first; a referee raising propagates
loudly, exactly as at the rename gate.



## OpenAPI

````yaml /openapi.json get /api/presets/{name}/referees
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 14.0.2
servers: []
security: []
paths:
  /api/presets/{name}/referees:
    get:
      tags:
        - presets
      summary: List live references to this preset
      description: >-
        Every live reference a rename of this preset would strand — the SAME
        full union

        the rename door blocks on: the OTHER presets whose active body composes
        it, plus every

        registered referee (platform wiring —
        schedules/hooks/routes/extensions/parks — and

        plugin holders). Exposed so the UI can preflight a rename. 404 for an
        unknown preset,

        the same existence check the rename door runs first; a referee raising
        propagates

        loudly, exactly as at the rename gate.
      operationId: get_api_presets_name_referees
      parameters:
        - in: path
          name: name
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/PresetRefereesResult'
                required:
                  - data
                type: object
          description: Success.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Resource not found.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    PresetRefereesResult:
      description: Every live reference a rename of this preset would strand.
      properties:
        name:
          title: Name
          type: string
        referees:
          items:
            type: string
          title: Referees
          type: array
      required:
        - name
        - referees
      title: PresetRefereesResult
      type: object
    Error:
      properties:
        code:
          description: >-
            Stable machine-readable reason a client keys a dedicated error state
            on, present on refusals that opt in (e.g. a 501 not-configured
            refusal). Optional: absent when the error carries only a
            human-readable message.
          type: string
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````