anaptecs / jeaf-generator

JEAF Generator uses UML models to generate code for Spring, REST, OpenAPI, Java and others. Boost your software development efficiency and time-to-market. Bye bye handwritten boiler blade code.
https://www.jeaf-generator.io
Apache License 2.0
2 stars 1 forks source link

Generic softlink references use `type` instead of `$ref` in OpenAPI specs #161

Closed jeaf-anaptecs closed 3 months ago

jeaf-anaptecs commented 3 months ago

Description

Generic softlink references use type instead of $ref in OpenAPI specs.

Current

subscriptionContractTemplate: 
 type: '../common/common.yaml#/components/schemas/CommonID' 
 nullable: false

Expected

subscriptionContractTemplate: 
 $ref: '../common/common.yaml#/components/schemas/CommonID' 
 nullable: false