Код IT Загрузка примера кода…

YAML main.yaml
components:
  schemas:
    TaskList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Task'
        total:
          type: integer
          description: Общее количество задач
        page:
          type: integer
          description: Текущий номер страницы
        pageSize:
          type: integer
          description: Размер страницы
components:
  schemas:
    TaskList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Task'
        total:
          type: integer
          description: Общее количество задач
        page:
          type: integer
          description: Текущий номер страницы
        pageSize:
          type: integer
          description: Размер страницы