Adrian Palanques
Adrian Palanques
Example with one schema property: ``` openapi: "3.0.0" info: title: API-Template description: | Single or multilined API description. Can be written on HTML or [CommonMark](http://commonmark.org/help/) version: v1 tags: - name:...
Add apigen (SpringBoot code generator from enhanced OpenAPI) and openapi2postman from the Apiaddicts-APITools.
## Parser version: 2.1.2 ## Spec: ``` openapi: "3.0.0" info: version: 1.0.0 title: 0001_allOffProps paths: /sample_resource: post: operationId: createResOne requestBody: content: application/json: schema: $ref: "#/components/schemas/create_res_one" responses: '201': description: Ok content:...
Hi, Seems that empty lines are evaluated as non valid. If im not wrong the yaml files can accept empty lines. Example: ``` swagger: "2.0" info: version: 1.0.0 title: Swagger...
If I'm not wrong the `response` definition in swagger 2 accepts an `examples` value but not an `example` value. This fragment is evaluated correctly by the plugin but is not...
Related PR #308
This fixes the issue #360
# Feature Request When I define a resource mapped to a model, I want to also support syntetic object fields. For example: project_resource: ```json { "id": 1 "name": "Test", "permissions":...
**Current behavior:** The generated code didn't work properly and not updates the sub element list relations. **Expected behavior:** The generated code updates correctly the sub element list relations. **Steps to...
Currently when you update an entity, it didn't detach it previously so the old and new ends being the same in the postUpdate method.