Giter Site home page Giter Site logo

angular-swagger2-client's People

Contributors

olaferlandsen avatar pouyanh avatar tomstanczyk avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

janstoon kiwigrid

angular-swagger2-client's Issues

Handle complex typed parameters

Currently getting parameter type is just based on type key and library is not aware of schema field. In fact it cannot do validation checks for complex-typed parameters.

For example:

  parameters:
    - name: entities
      in: body
      required: true
      schema:
        type: array
        items:
          $ref: "#/definitions/entity"

Handle array body parameters

There are requests which their body have to be an array, and not an object:

swagger: '2.0'
info:
  title: entities management
  version: 2.0.0
schemes:
  - http
consumes:
  - application/entities.management.api.v1+json
  - application/json
  - text/plain
produces:
  - application/entities.management.api.v1+json
  - application/json
paths:
  /entities:
    post:
      tags:
        - entities
      operationId: createEntities
      summary: Create new entities
      parameters:
        - name: entities
          in: body
          required: true
          schema:
            type: array
            items:
              $ref: "#/definitions/entity"
      responses:
        201:
          description: Created all
          schema:
            type: object
            properties:
              entities:
                type: array
                items:
                  $ref: "#/definitions/entity"
        207:
          description: Created some
          schema:
            type: object
            properties:
              entities:
                type: array
                items:
                  $ref: "#/definitions/entity"
              errors:
                type: array
                items:
                  $ref: "#/definitions/error"
        default:
          description: error
          schema:
            $ref: "#/definitions/error"
definitions:
  entity:
    type: object
    required:
      - entityId
      - name
    properties:
      entityId:
        type: integer
        format: int32
        readOnly: true
        description: Internal identifier of an entity
      name:
        type: string
        description: Name of an entity

  error:
    type: object
    required:
       - message
    properties:
      code:
        type: integer
        format: int64
      message:
        type: string
      fields:
        type: array
        items:
          type: string

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.