swagger_to_uml icon indicating copy to clipboard operation
swagger_to_uml copied to clipboard

Convert OpenAPI specifications (a.k.a. Swagger) to PlantUML diagrams

Results 15 swagger_to_uml issues
Sort by recently updated
recently updated
newest added

Path is replaced with $ref to an openapi yaml stored html. Example: paths: /: $ref: 'https://artifactory.mycompany.com/artifactory/maven/com/apis/common/0.1.0-20210924151918/common-0.1.0-20210924151918.yaml#/paths/New' /instances: $ref: 'https://artifactory.mycompany.com/artifactory/maven/com/apis/common/0.1.0-20210924151918/common-0.1.0-20210924151918.yaml#/paths/GetInstanceIds' swagger_to_uml throws the following error Traceback (most recent call last): File...

Allow using the full path of reference. For instance, APDS API spec parameters placed under **components/parameters**: https://github.com/parkingdata/spec/blob/6bd43ad31197c3aeb0149a9c08d3836c5be6a1dc/api/reference/APDS_API.yaml#L106

Hi I was used to use this good tool some year ago to fully document my APIs What about JSON Schema support ?

Bumps [pyyaml](https://github.com/yaml/pyyaml) from 5.1 to 5.4. Changelog Sourced from pyyaml's changelog. 5.4 (2021-01-19) yaml/pyyaml#407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA yaml/pyyaml#472 -- Fix for...

dependencies

I successfully generated a diagram for the petstore API, but failed on this file: https://consumerdatastandardsaustralia.github.io/standards/includes/swagger/cds_full.json The file passes a validation test, but I can't rule out a problem with the...

Hello, I need to define property **UnitGameSystem.profiles** with an array of multiple type of object **ProfileXXX** whish are inherited of object **Profile** ``` json ... UnitGameSystem: properties: id: type: string...

ClassA has a member b[] of type ClassB. The idea is to show the relationship as a continus line and show the multiplicity as well. ClassA --> "*" ClassB :...

If there are plus chars in the name of an entity, they are not correctly masked. workaround: ```bash sed -i 's#\([^ ]*[+][^ ]*\)#"\1"#g' swagger.puml ``` before image creation

Extended Pet example to include Cat and Dog using allOf example from here: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md Get the following error: `python swagger_to_uml.py swagger.json > swagger.puml required key "type" not found in dictionary...