We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current implementation does not support RAML 1.0. It accepts the definition file, but it does not parse the new elements in the DSL.
For example, using this specification:
#%RAML 1.0 title: Pet shop version: 1 baseUri: /shop /pets: get: responses: 200: body: application/json: post: description: 'una descripcion' body: application/json: type: object properties: name: string kind: string price: number example: | { "name": "Snoopy", "kind": "Mammal", "price": 100 } /{id}: put: body: application/json: delete: responses: 204:
PHP-RAML2HTML shows the GET & POST methods, but the object definition for POST /pets is ignored as type: objectwas not supported in RAML 0.8.
POST /pets
type: object
Please, consider adding support for RAML 1.0
The text was updated successfully, but these errors were encountered:
1+, It will be great if this tool add support for RAML 1.0 features.
Sorry, something went wrong.
+1 it will be great)
And we are already in 2017... I would like a RAML 1.0 support too :)
No branches or pull requests
The current implementation does not support RAML 1.0. It accepts the definition file, but it does not parse the new elements in the DSL.
For example, using this specification:
PHP-RAML2HTML shows the GET & POST methods, but the object definition for
POST /pets
is ignored astype: object
was not supported in RAML 0.8.Please, consider adding support for RAML 1.0
The text was updated successfully, but these errors were encountered: