TanmoySG / wunderDB

A micro JSON-based Data Store inspired by MongoDB.
http://wdb.tanmoysg.com/api/
Apache License 2.0
12 stars 0 forks source link

[⚙️ Development] API Request Validation #43

Closed TanmoySG closed 1 year ago

TanmoySG commented 1 year ago

API Request bodies must be validated before passing them to handler functions. Schema of the request should be set and incoming request body should be validated against the schema. A 400 status should be send if validation fails.

TanmoySG commented 1 year ago

Currently only checking if field exists. Type and other checks to be done in a separate Issue/Task.