Sha256: 7bedfba3aa5594d5a8a1a4d433f5b16283eb36d1ebd5c79998ded856cf05a9ee

Contents?: true

Size: 365 Bytes

Versions: 7

Compression:

Stored size: 365 Bytes

Contents

#%RAML 0.8
---
title: Example API
baseUri: http://localhost:3000
securedBy: [oauth_2_0]
securitySchemes:
  - oauth_1_0:
      type: OAuth 1.0
  - oauth_2_0:
      type: OAuth 2.0
/first:
  get:
    securedBy: [oauth_1_0]
  post:
    securedBy: [oauth_2_0]
/second:
  securedBy: [oauth_1_0]
  get:
    securedBy: [null, oauth_2_0]
  post:
    securedBy: [oauth_2_0]

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
raml_parser-0.2.5 spec/examples/raml/securedby2.raml
raml_parser-0.2.4 spec/examples/raml/securedby2.raml
raml_parser-0.2.3 spec/examples/raml/securedby2.raml
raml_parser-0.2.2 spec/examples/raml/securedby2.raml
raml_parser-0.2.1 spec/examples/raml/securedby2.raml
raml_parser-0.2 spec/examples/raml/securedby2.raml
raml_parser-0.1 spec/examples/raml/securedby2.raml