openapi: 3.0.1
info:
  title: Test
  version: "2.0"
tags:
- name: Tests
  description: Test tag.
paths:
  /api/v2/changeOfRequestFieldValueTiedToEnumTest:
    get:
      tags:
      - Tests
      summary: This is a test
      description: Test description.
      operationId: getTest
      requestBody:
        description: Test.
        content:
          application/json:
            schema:
              type: string
              description: any text
        required: true
      responses:
        "200":
          description: OK
          content:
          application/json:
              schema:
                type: string
      security:
      - DigestAuth: []
components: {}
