Desidero dichiarare una proprietà di definizione del modello tipo in Swagger 2.0Swagger 2.0: Come dichiarare una proprietà di definizione del modello tipo?
Questa definizione è corretta? (specialmente il tipo: parte StatusObject)
definitions:
MyObject:
type: "object"
properties:
id:
type: "number"
country:
type: "string"
status:
type: StatusObject
StatusObject:
type: "object"
properties:
code:
type: "number"
shortMessage:
type: "string"
message:
type: "string"
Grazie!
Thanks a lot! Funziona bene! – JAM