I wish to POST an array containing a variable number of strings, such as
["string1", "string2", ... "stringN"]
My present OpenAPI document defines it this way:
schema:
type: array
items:
description: networkIds
type: string
Is this the correct way to code to the OpenAPi v3 spec, or is there a more precise way to indicate one or more strings within the array?