Lorena Soledad Daicich
Lorena Soledad Daicich
From the _format_ facet description for Number types: > The format of the value. The value MUST be one of the following: int32, int64, int, long, float, double, int16, int8...
Having the following RAML as an example: ```yaml #%RAML 1.0 title: Array default type version: v1 types: MyType: type: array ``` You define a custom type which extends from an...
When defining status codes for responses, it's not clear which is the valid range for this value. ``` yaml #%RAML 1.0 title: Hello world /greeting: get: responses: 200: body: application/json:...