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

# The dependency rules, one row per allowed value under a driving pair

> Requires a token with the `rules:read` permission.



## OpenAPI

````yaml /openapi.json get /api/v1/rules/dependencies
openapi: 3.0.0
info:
  description: >-
    Every request carries `Authorization: Bearer utmk_…`. The token fixes the
    workspace; no request names one. Every operation declares `x-permission`,
    the token permission it requires.
  title: UTM Builder API
  version: '1'
servers:
  - url: https://app.utmkit.co
    variables: {}
security:
  - bearer: []
tags: []
paths:
  /api/v1/rules/dependencies:
    get:
      tags:
        - rules
      summary: The dependency rules, one row per allowed value under a driving pair
      description: Requires a token with the `rules:read` permission.
      operationId: UtmBuilderWeb.API.V1.RulesController.dependencies
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DependencyRuleList'
          description: Dependency rules
      callbacks: {}
components:
  schemas:
    DependencyRuleList:
      properties:
        data:
          items:
            $ref: '#/components/schemas/DependencyRule'
          type: array
      title: DependencyRuleList
      type: object
    DependencyRule:
      properties:
        driving_parameter:
          type: string
        driving_value:
          type: string
        id:
          type: integer
        target:
          type: string
        value:
          type: string
      title: DependencyRule
      type: object
  securitySchemes:
    bearer:
      description: utmk_<lookup><secret>, minted on /tokens
      scheme: bearer
      type: http

````