Я пытаюсь задокументировать POST-запрос с одним полем объекта и одним предопределенным. Как я могу сделать это правильно? Это решение нарушает схему после разбора api-blueprint.
### Create order [POST]
Create a new order
+ Request Post new patient (application/json)
+ Attributes (object)
### CustomIds
+ system: `['Some1', 'Some2']` (string, optional) - The order custom id's system
+ Members
+ `Test1`
+ `Test2`
+ `Test3`
+ customerName: `John` (string, required) - The customer's given name
+ customIds: `some, 123` (array[CustomIds], optional) - custom ids
+ Body
{
"customerName" : "John",
"customIds": [{"system": "some", "id": "123"}] //optional
}