openapi: 3.0.1
info:
  title: Test API
  version: "2.0"
tags:
- name: Tests
  description: Test tag.
paths:
  /api/v2/changeOfResponseFieldValueTiedToEnumTest:
    get:
      tags:
      - Tests
      summary: This is a test
      description: Test description.
      operationId: getTest
      responses:
        "200":
          description: OK
          content:
            application/json:
              schema:
                type: string
                description: Enum values
                enum:
                - VALUE_1
                - VALUE_2
                - VALUE_3
      security:
      - DigestAuth: []
components:
  securitySchemes:
    DigestAuth:
      type: http
      scheme: digest