gitextract_6fpllo2o/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── errors.go ├── parser.go ├── raml_test.go ├── samples/ │ ├── bad_raml.raml │ ├── congo/ │ │ └── api.raml │ ├── example.raml │ ├── github/ │ │ └── github-api-v3.raml │ ├── notes/ │ │ └── api.raml │ ├── other_example.raml │ ├── raml-tutorial-200/ │ │ ├── README.md │ │ ├── jukebox-api.raml │ │ ├── jukebox-include-album-new.sample │ │ ├── jukebox-include-album-retrieve.sample │ │ ├── jukebox-include-album-songs.sample │ │ ├── jukebox-include-album.schema │ │ ├── jukebox-include-albums.sample │ │ ├── jukebox-include-artist-albums.sample │ │ ├── jukebox-include-artist-new.sample │ │ ├── jukebox-include-artist-retrieve.sample │ │ ├── jukebox-include-artist.schema │ │ ├── jukebox-include-artists.sample │ │ ├── jukebox-include-song-new.sample │ │ ├── jukebox-include-song-retrieve.sample │ │ ├── jukebox-include-song.schema │ │ └── jukebox-include-songs.sample │ ├── sample_documentation.yaml │ └── simple_example.raml ├── types.go └── validator.go