Ladislav Prskavec
Ladislav Prskavec
@zdne opened apiaryio/snowcrash#55 Update: This is no longer the issue, however there is still a problem when the reference is defined in another description block. See https://github.com/apiaryio/snowcrash/issues/55#issuecomment-58488125 --- ~~Following blueprint:~~...
@Almad opened apiaryio/snowcrash#64 With `GET`, there should be no request body. When it's specified in blueprint, snowcrash should warn or err.
@zdne opened apiaryio/snowcrash#65 For example in ``` # Resource [/] + Model + Body (application/json) { ... } ``` The `+ Body (application/json)` is not recognized as a body (content...
@Neamar opened apiaryio/snowcrash#90 (not sure i'm posting on right repo, since i'm using API blueprint from @danielgtaylor Aglio) My API allow for parameters prefixed with "@", for instance "@name=". However,...
@pksunkara opened apiaryio/snowcrash#99 In my opinion, a single Traits should be enough which would check both http methond and response status code.
@pksunkara opened apiaryio/snowcrash#148 If you look [here](https://github.com/apiaryio/snowcrash/blob/84e18913994c3a0661ac0762ac7017fce76eab26/src/ActionParser.h#L119) ``` ## GET /1 + Response 200 + Body {} ``` casually ignores the `Body` node and sets the `Response` body as empty....
@zdne opened apiaryio/snowcrash#214 ### Given ``` # API Before Hello - a - b After Hello World ``` The output AST description node contains extraneous newlines after each list item....
@honzajavorek opened apiaryio/snowcrash#286 ### Protagonist version `"protagonist-experimental": "0.18.2"` ### MSON Specs https://github.com/apiaryio/mson/blob/master/MSON%20Specification.md#44-sample ### Example MSON (copy pasted from specs) ``` markdown - list: *3, 4* (enum) ``` ### Result of...
@klokane opened apiaryio/snowcrash#327 according to MSON spec: https://github.com/apiaryio/mson/blob/master/MSON%20Specification.md#44-sample ``` - list: 3, 4 (enum, sample) ``` Is equivalent to: ``` - list: *3, 4* (enum) ``` but if you sent...
@klokane opened apiaryio/snowcrash#330 in MSON spec 4.1.2 https://github.com/apiaryio/mson/blob/master/MSON%20Specification.md#421-member-type-separator is written: ``` Member Type Separator → Items | Members | Properties Array Structures - MUST use Items for a Member Type...