Eclipse Oxygen 3a с KaiZen-OpenAPI-Editor (0.8.0.201905261858) показывает предупреждение, когда параметр пути указан в компонентах -> параметры.
Такое предупреждение не отображается для параметра запроса.
openapi: "3.0.0"
info:
version: 1.0.0
title: Swagger for pet module
paths:
/Pets/{petId}:
get:
operationId: getPet
parameters:
- $ref: "#/components/parameters/petId"
responses:
200:
description: pet response
components:
parameters:
petId:
name: petId
in: path
required: true
schema:
type: string
Следующее предупреждение отображается в строке с указанием имени: petId:
Could not locate path for parameter 'petId'