21 lines
714 B
Plaintext
21 lines
714 B
Plaintext
|
#%RAML 1.0 Library
|
||
|
# This is the file /libraries/securitySchemes.raml
|
||
|
securitySchemes:
|
||
|
- basicAuth:
|
||
|
description: Each request must contain the headers necessary for
|
||
|
basic authentication
|
||
|
type: Basic Authentication
|
||
|
describedBy:
|
||
|
headers:
|
||
|
Authorization:
|
||
|
description: |
|
||
|
Used to send the Base64 encoded "username:password"
|
||
|
credentials
|
||
|
type: string
|
||
|
responses:
|
||
|
401:
|
||
|
description: |
|
||
|
Unauthorized. Either the provided username and password
|
||
|
combination is invalid, or the user is not allowed to
|
||
|
access the content provided by the requested URL.
|