Kyle Fuller
Kyle Fuller
I can confirm string is now implemented: ```apib + Response 200 (application/json) + Attributes (string, nullable) ``` Message Body Schema: ```json { "$schema": "http://json-schema.org/draft-04/schema#", "anyOf": [ { "type": "null" },...
Hi @thanhtoan1196, just want to acknowledge we've got the bug report.
@jbrauchler can you please elaborate on what you are refering to when you say "label above it". The following example will allow you to add description for each action. ```apib...
That isn't something that is possible right now, however it is on our roadmap regarding adding MSON Support for Parameters (https://github.com/apiaryio/api-blueprint-rfcs/pull/3).
Hi @anhari, That's a great idea. We do use these a lot ourselves in the specification and other documentation. Unfortunately this isn't completely straight forward to implement given how API...
@regmimilan You have not included any sample values, and the attributes are optional and thus they are not included in the rendered JSON example. If you make them either required,...
@regmimilan Non primitive types such as `array` and `object` are rendered differently because they may contain other value types inside them. I may be wrong, but I think this is...
If anyone has any suggestions on how to improve the experience around the reserved characters please let me know.
@FFX01 There hasn't been any updates on this, but this is certainly something you can help implement. The first step would be to define the syntax for describing multi part...
See below, you can define the URI Template with parameters specific to the action within the action. ```apib ## Courses [/courses] ### List All Courses [GET /courses{?quarter_id,professor_id}] + Parameters +...