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"
    }
  ]
}