Apply Default Security via securedBy
masterThe securedBy node sets the default security schemes that apply to every method of every resource in the API. The value must be an array of security scheme names defined in the securitySchemes node.
#%RAML 1.0
title: Dropbox API
version: 1
baseUri: https://api.dropbox.com/{version}
securedBy: [ oauth_2_0, oauth_1_0 ]
securitySchemes:
oauth_2_0: !include securitySchemes/oauth_2_0.raml
oauth_1_0: !include securitySchemes/oauth_1_0.raml