Giter Site home page Giter Site logo

Comments (2)

Menda0 avatar Menda0 commented on July 3, 2024

Hi dharichandan,

This is a really old repo. In order to validate parameters use the default flask restful request parsing method. You can see more in https://flask-restful.readthedocs.io/en/0.3.5/reqparse.html.

It can be something like this:

parser = reqparse.RequestParser()
# Int argument
parser.add_argument('rate', type=int, help='Rate cannot be converted', required=True)
parser.add_argument('name')
args = parser.parse_args()

from flask-restful-swagger-2.0.

dharichandan avatar dharichandan commented on July 3, 2024

Thanks Marco,

I have tried this. But I was looking for something that takes the schema object and validates.


from flask_restful_swagger_2 import Schema

class User(Schema):
type = 'object'
properties = {
'name': {
'type': 'string',
'description': 'Name of User'
},
'id': {
'type': 'string',
'description': 'User Id'
}
}
required = ["name", "id"]

class UserListModel(Schema):
type = 'object'
properties = {
'users': UserModel
}
required = ["users"]

Now when I send a request like this -
{
"users": [
{
"name": "user1-testvm",
"id": 1
},
{
"name": "user2-testvm"
}
]
}

It should Identify that 2nd user element in missing a required parameter.

I found this package but when it comes to nested models like in this case, it fails to work.
https://github.com/cwacek/python-jsonschema-objects

from flask-restful-swagger-2.0.

Related Issues (1)

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.