![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
express-openapi-validation
Advanced tools
Express middleware for openapi parameter validation.
If validation errors occur, next
is called with {status: 400, errors: [<validation errors>]}
.
$ref
in body schemas i.e. #/definitions/SomeType
.See ./test/data-driven/*.js
for more examples.
var app = require('express')();
var validate = require('express-openapi-validation')({
parameters: [
{
in: 'query',
type: 'string',
name: 'foo',
required: true
}
],
schemas: null, // an optional array or object of jsonschemas used to dereference $ref
version: 'swagger-2.0', // default optional value for future versions of openapi
errorTransformer: null, // an optional transformer function to format errors
customFormats: {
// support `"format": "foo"` for types.
foo: function(input) {
return input === 'foo';
}
}
});
app.get('/something', validate, function(req, res) {
res.status(200).json('woohoo');
});
// GET /something => 400
// GET /something?foo=asdf => 200
An array of openapi parameters.
If given as an array, each schema must have an id
property. See ./test/data-driven/
for tests with schemas
. Ids may be schema local (i.e. #/definitions/SomeType
),
or URL based (i.e. /SomeType
). When supplied, $ref
usage will map exactly to the
Id e.g. if id
is /SomeType
, $ref
must be /SomeType
.
If given as an object, it will be assigned to bodySchema.definitions
. Schemas may then be dereferenced in parameters by using #/definitions/<key in args.schemas object>
.
An optional string that currently does nothing. This will ensure nothing breaks for new versions of openapi drafts that get added in the future.
A function that transforms errors.
This function is passed 2 arguments.
errorTransformer: function(openapiError, jsonschemaError) {
return {
message: openapiError.message
};
}
See the error format in jsonschema for
jsonschemaError
. openapiError
s have the following properties:
errorCode
- A jsonschema error suffixed with .openapi.validation
.location
- One of body
, headers
, path
, or query
. Signifies where validation
failed.message
- A detailed message as to why validation failed.path
- The property of the location that failed validation.An object of formatters to use for the format
keyword.
See Custom Formats in jsonschema.
The MIT License (MIT)
Copyright (c) 2016 Kogo Software LLC
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
FAQs
Express middleware for openapi parameter validation.
The npm package express-openapi-validation receives a total of 64 weekly downloads. As such, express-openapi-validation popularity was classified as not popular.
We found that express-openapi-validation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.