
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@kintone/plugin-manifest-validator
Advanced tools
[](https://badge.fury.io/js/%40kintone%2Fplugin-manifest-validator) ;
const manifestJson = require("./path/to/your/manifest.json");
const result = validator(manifestJson);
console.log(result.valid); // true or false
console.log(result.errors); // array of ajv error objects
console.log(result.warnings); // string array
ajv error objects is like:
{
dataPath: '/version',
keyword: 'type',
message: 'should be integer',
params: {
type: 'integer',
},
schemaPath: '#/properties/version/type',
}
manifest-schema.jsonJSON schema for manifest.json is available.
const manifestJsonSchema = require("@kintone/plugin-manifest-validator/manifest-schema.json");
manifest-schema.d.tsTypeScript type definition (d.ts) for manifest.json is available.
import { KintonePluginManifestJson } from "@kintone/plugin-manifest-validator/manifest-schema";
let manifest: KintonePluginManifestJson;
$schema propertyWhen you are configuring your project, you would better set the $schema property. This property should point to a schema file that validates your manifest. We recommend setting the $schema property to the following URI in your manifest.json:
https://raw.githubusercontent.com/kintone/js-sdk/%40kintone/plugin-manifest-validator%4010.3.0/packages/plugin-manifest-validator/manifest-schema.json
Note: Add or update the $schema property at the top of the manifest.json.
MIT License
FAQs
[](https://badge.fury.io/js/%40kintone%2Fplugin-manifest-validator) 
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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.