Giter VIP home page Giter VIP logo

libswagger's Introduction

libswagger

This library provides a strongly typed representation of Swagger specification documents, and an API for parsing to that representation from YAML or JSON, from a path or from a binary.

It automatically resolves remote schemas, using an HTTP client library of your choice via the Tesla library.

Basic Usage

Given a simple Swagger specification in YAML form, you can generate it's representation like so:

Swagger.parse_file("myschema.yaml")

# or..

Swagger.parse_yaml(File.read!("myschema.yaml"))

The filetype is determined by the extension when using parse_file/1, otherwise you need to tell libswagger the parser to use with either parse_yaml/1 or parse_json/1.

The end result is a struct which looks something like the following:

%Swagger.Schema{
  :info => %{"title" => "Key-Value Store", "version" => "0.2"},
  :host => "kv-service:8080",
  :schemes => ["http", "https"],
  :consumes => ["application/json"],
  :produces => ["application/json"],
  :paths => %{
    "/solution/{solution_id}" => %Swagger.Schema.Endpoint{
      :operations => %{
        :get => %Swagger.Schema.Operation{
          :id => "info",
          :responses => %{200 => _}
        }
      },
      :parameters => %{
        "solution_id" => %Swagger.Schema.Parameter.PathParam{
          :required? => true, 
          :spec => %{:type => :string, :pattern => "^[a-zA-Z0-9]+$"}}
      }
    }
}}

License

MIT

libswagger's People

Contributors

bitwalker avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.