{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NpmRequirement", "title": "NpmRequirement", "properties": { "name": { "type": "string", "minLength": 1, "title": "Name", "description": "Name of the npm package." }, "version": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Version", "description": "Optional version of the package, following semantic versioning." } }, "type": "object", "required": [ "name" ] }