Just started using the Eclipse plugin and have one issue. We divide up the object definitions into one file and the actual API definitions into another. it seems to have an issue with enums using references in another file.
Suppose you define the following two files:
bug-defs.yaml
Just started using the Eclipse plugin and have one issue. We divide up the object definitions into one file and the actual API definitions into another. it seems to have an issue with enums using references in another file.
Suppose you define the following two files: bug-defs.yaml
bug.yaml
Then the parameter reference (
- $ref: './bug-defs.yaml#/parameters/foo'
) shows a warning:If I either
foo
parameter in bug-defs instead of using a YAML-reference (FooValues
) ORdefinitions
andparameters
blocks into bug.yaml (but leave the YAML-reference as-is)then I do not get the warning. The generated code seems to work, so why the warning?