You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
I am trying to create a common library with resource types. As part of the resource type, I want to include a Security Scheme.
I am trying to add it in two different ways:
A- Adding the security scheme directly in the common library (lib --> security scheme)
B- Adding the security scheme in a library and adding that library in the common library (lib --> lib --> security Scheme)
Using approach B works, using approach A throws "Error: Security scheme 'oauth2Scheme' not found in declarations."
Let me provide the code:
#%RAML 1.0 Library
usage: A common lib
uses:
securitySchemeFromLibrary: securitySchemeLibrary.raml
securitySchemes:
oauth2Scheme: !include securityScheme.raml
resourceTypes:
genericCollection:
usage: Use this resourceType to represent any collection of items
securedBy: [ oauth2Scheme ] ## A) This fails with: Security Scheme not found in declaration
## B) securedBy: [ securitySchemeFromLibrary.oauth ] This works
I am trying to create a common library with resource types. As part of the resource type, I want to include a Security Scheme.
I am trying to add it in two different ways:
A- Adding the security scheme directly in the common library (lib --> security scheme)
B- Adding the security scheme in a library and adding that library in the common library (lib --> lib --> security Scheme)
Using approach B works, using approach A throws "Error: Security scheme 'oauth2Scheme' not found in declarations."
Let me provide the code:
securityScheme.raml
securitySchemeLibrary.raml
I can not fully understand why I am a receiving the "not found declaration" error.
The text was updated successfully, but these errors were encountered: