Forum Discussion

Swhite215's avatar
Swhite215
Occasional Visitor
5 years ago

Using OAS with Swagger-Inline to Document API

How do I describe an object using swagger-inline formats for use with the oas npm tool? In the below, the selector portion of the request body is a nested object that looks something like this:
{
      property: {condition: String value},
      property: {condition: Integer value}
}

 

/*
* @oas [post] /db/{db}/query/document
* description: "Returns information about a specific document."
* parameters:
* - (path) db=test* {String} The name of the database to query.
* - (body) selector* {object} An object containing selectors used for querying
* - (body) fields* {String} An array containing the fields returned by the query
* - (body) limit {Integer:int32} How many documents to return
*/
No RepliesBe the first to reply