Sha256: 5f44291e94145d8ede67458806b261c6b87e5762fd48131597e5fda4c53afa2d

Contents?: true

Size: 731 Bytes

Versions: 9

Compression:

Stored size: 731 Bytes

Contents

#%RAML 0.8
---
title: e-BookMobile API
baseUri: http://api.e-bookmobile.com/{version}
version: v1
mediaType: application/json

/authors:
  get:
    description: Retrieve a list of authors
    responses:
      200:
        body:
          application/json:
            example: |
              {
                "data": [
                  {
                    "id": 1,
                    "first_name": "Hermann",
                    "last_name": "Hesse"
                  },
                  {
                    "id":2,
                    "first_name": "Charles",
                    "last_name": "Dickens"
                  }
                ],
                "success": true,
                "status": 200
              }

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rambo_ruby-0.7.1 spec/support/raml_with_media_type.raml
rambo_ruby-0.7.0 spec/support/raml_with_media_type.raml
rambo_ruby-0.6.0 spec/support/raml_with_media_type.raml
rambo_ruby-0.5.0 spec/support/raml_with_media_type.raml
rambo_ruby-0.4.0 spec/support/raml_with_media_type.raml
rambo_ruby-0.3.3 spec/support/raml_with_media_type.raml
rambo_ruby-0.3.2 spec/support/raml_with_media_type.raml
rambo_ruby-0.3.1 spec/support/raml_with_media_type.raml
rambo_ruby-0.3.0 spec/support/raml_with_media_type.raml