jfudickar / json2puml

Generate PlantUML files based on JSON files.
GNU General Public License v3.0
8 stars 0 forks source link

Add an option to "remove" objects from a list. #15

Closed jfudickar closed 9 months ago

jfudickar commented 10 months ago

When wildcards are used it may sometimes helpfull to remove objects from this wildcard list.

Example: "attributeProperties": { "operation": "replace", "list": [ "id", "*name", "status" ] },

New Version: "attributeProperties": { "operation": "replace", "list": [ "id", "*name", "-Firstname", "status" ] },

"-Firstname" removes the allowed propertynames from the "*name" filter.

jfudickar commented 9 months ago

Done