I have a REST service to document, and some of them accept simple array like:
[
{ "name":"a" },
{ "class":"b" },
{ "hello":"c" }
]
How do I describe this in the Swagger yaml model section? I can only create 'is_sellerarray' like
{
"is_seller": [
{
"name": "string",
"asim": "string"
}
]
}
You can define your own array type. Your Pet object will have
name
andasim
as two attributes. Follow documents for more information. https://swagger.io/docs/specification/data-models/You can play around online swagger editor to see real time changes. https://editor-next.swagger.io/