Sha256: 8744719e6407c60dab3225ecd7295c814b9fbb78549469190eb68c1b8bccaac1

Contents?: true

Size: 1.2 KB

Versions: 7

Compression:

Stored size: 1.2 KB

Contents

#%RAML 0.8
---
title: GitHub API
baseUri: https://api.github.com
version: v3
traits:
  - base:
      responses:
        404:
          description: Not found
          body:
            application/json:
              example: |
                {
                  "status_code": 404,
                  "message": "Not found"
                }
        500:
          description: Internal server error
          body:
            application/json:
              example: |
                {
                  "status_code": 500,
                  "message": "Internal server error"
                }
resourceTypes:
  - collection:
      post:
        responses:
          404:
            description: Not found
            body:
              application/json:
                example: |
                  {
                    "status_code": 404,
                    "message": "Not found"
                  }
          500:
            description: Internal server error
            body:
              application/json:
                example: |
                  {
                    "status_code": 500,
                    "message": "Internal server error"
                  }
/users/{username}:
  type: collection
  get:

Version data entries

7 entries across 7 versions & 1 rubygems

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