Closed byron-janrain closed 9 years ago
In the future, could you please submit the minimal working example to demonstrate the problem, that way I don't have to build a RAML file to exercise each new feature?
Good call, i'll update my other issues with working RAML here's one that uses multiple security schemes
#%RAML 0.8
title: Minimal RAML
securitySchemes:
- customappscheme:
description: an application wide security mechanism
type: x-header
describedBy:
headers:
Authorization:
description: magic secrets.
responses:
401:
description: bad secret!
- customappscheme2:
description: an endpoint specific security mechanism
type: x-header
describedBy:
headers:
Authorization:
description: magic secrets.
responses:
401:
description: bad secret!
/:
get:
securedBy: [ customappscheme2, customappscheme ]
securedBy does not get rendered.