Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
blue-button-model
Advanced tools
Blue Button Model Definition and Validation
This library defines a JSON Blue Button health data model. All parsers in blue-button library generate data that follow this model. The schema can be found here or programmatically here. The implementation uses z-schema.
var fs = require('fs');
var bb = require('blue-button');
bar bbm = require('blue-button-model');
var xmlString = fs.readFileSync('CCD_1.xml', 'utf-8');
var record = bb.parseString(xmlString);
var valid = bbm.validator.validateDocumentModel(record);
if (!valid) {
var error = bbm.validator.getLastError();
console.log(error);
}
Primary method to validate Blue Button JSON documents.
Arguments
document
- JSON health data document.true
or false
.Validates individual components in Blue Button documents such as sections and entries.
Arguments
obj
- Component in the JSON health data document.schemaName
- Type of obj
. You can use id
property of any schema avaiable in the list.true
or false
.If validation fails this method returns the details of the errors. The error object is actually an array of errors and directly provided by the underlying library z-schema.
### schemas.list(expandCommon)Provides the list of schemas that are used in the model. The list includes section schemas, entry schemas and common component schemas. Full document schema is also available with id document_model
.
Arguments
expandCommon
- If this is falsy, common component (such as address, time, etc.) schemas are provided in an array.Similar to list but provides a map of schema ids (name) to schemas. If expandCommon
is falsy, the array of common component schemas are provided with common_models
key.
Licensed under Apache 2.0.
FAQs
Blue Button Model Validation
We found that blue-button-model demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.