Giter Site home page Giter Site logo

Comments (5)

fehguy avatar fehguy commented on May 1, 2024

it is impossible to use json schema for this from my research. There isn't enough type information for much of swagger, so we're "loosely based" on a json-schema draft.

from swagger-node.

paulhill avatar paulhill commented on May 1, 2024

where did it fall short?

On Thu, Jun 27, 2013 at 5:09 PM, Tony Tam [email protected] wrote:

it is impossible to use json schema for this from my research. There isn't
enough type information for much of swagger, so we're "loosely based" on a
json-schema draft.


Reply to this email directly or view it on GitHubhttps://github.com//issues/61#issuecomment-20163418
.

from swagger-node.

paulhill avatar paulhill commented on May 1, 2024
if(param.allowableValues) {
      var avs = param.allowableValues.toString();
      var type = avs.split('[')[0];
      if(type == 'LIST'){
        var values = avs.match(/\[(.*)\]/g).toString().replace('\[','').replace('\]', '').split(',');
        param.allowableValues = {valueType: type, values: values};
      }
      else if (type == 'RANGE') {
        var values = avs.match(/\[(.*)\]/g).toString().replace('\[','').replace('\]', '').split(',');
        param.allowableValues = {valueType: type, min: values[0], max: values[1]};
      }
    }

this code above, seems like it would be supported by the following json-schema attributes:

5.9. minimum

This attribute defines the minimum value of the instance property
when the type of the instance value is a number.

5.10. maximum

This attribute defines the maximum value of the instance property
when the type of the instance value is a number.

5.11. exclusiveMinimum

This attribute indicates if the value of the instance (if the
instance is a number) can not equal the number defined by the
"minimum" attribute. This is false by default, meaning the instance
value can be greater then or equal to the minimum value.

5.12. exclusiveMaximum

This attribute indicates if the value of the instance (if the
instance is a number) can not equal the number defined by the
"maximum" attribute. This is false by default, meaning the instance
value can be less then or equal to the maximum value.

5.19. enum

This provides an enumeration of all possible values that are valid
for the instance property. This MUST be an array, and each item in
the array represents a possible value for the instance value. If
this attribute is defined, the instance value MUST be one of the
values in the array in order for the schema to be valid. Comparison
of enum values uses the same algorithm as defined in "uniqueItems"
(Section 5.15).

from swagger-node.

paulhill avatar paulhill commented on May 1, 2024

Moving to a more compliant model would also have the advantage of allowing you to plug in validation as easily as this:

var jsonSchema  = require('json-schema');
var report = jsonSchema.validate(input, schema);
if (!report.valid) {
        var validationErrors = report.errors;
    ...
}

from swagger-node.

fehguy avatar fehguy commented on May 1, 2024

should be done in 2.0.0

from swagger-node.

Related Issues (20)

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.