Ich habe eine Reihe anderer Definitionen in meiner Swagger-Spezifikation:
"action": {
"title": "Action",
"description": "Action to apply to matching requests",
"type": "object",
"enum": [
{"delayAction": {"$ref": "#/definitions/delayAction"}},
{"abortAction": {"$ref": "#/definitions/abortAction"}},
{"abortAction": {"$ref": "#/definitions/traceAction"}}
]
},
und delayAction
, abortAction
und traceAction
sind alle definiert.
Aber im Swaggerui ist das Modell für Action leer.
Wie kann ich meine Swagger-Definition ändern, damit swaggerui die Definition von action
im Modell anzeigen kann?
Tags und Links swagger swagger-ui swagger-2.0