Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@asymmetrik/fhir-json-schema-validator
Advanced tools
Utility for validating FHIR resources
yarn add @asymmetrik/fhir-json-schema-validator
@asymmetrik/fhir-json-schema-validator
exports a single class called JSONSchemaValidator. This class takes two optional
arguments for initialization:
schema
This is the path to the JSON schema that you would like to validate against. It defaults to the
fhir.schema.json
file included in this package.
ajvSettings
This is an object with the settings to pass on to AJV. It defaults to suppresses log
and warn
messages, but logs error
messages. For a full list of AJV options see the README on the AJV GitHub page athttps://github.com/epoberezkin/ajv.
// Default initialization:
let defaultValidator = new JSONSchemaValidator();
// Custom initialization
let defaultValidator = new JSONSchemaValidator(schema, ajvSettings);
The QueryBuilder class has a method called validate
which takes two arguments:
resource
The resource that is to be validated against the FHIR JSON schema.
verbose
Boolean value specifying whether or not to return the full set of validation errors (true) or to take the time to condense error messages (false). Defaults to false. The error messages generated by the over-arching json schema are too numerous to be of any use. For any specific resource, we can compile a resource-specific validator and re-validate to get more concise and helpful error messages.
The validate
method returns an array that contains any errors generated from validation.
This list will be of length 0 if no errors were found.
See index.test.js
for examples of usage
FAQs
FHIR json schema validator
The npm package @asymmetrik/fhir-json-schema-validator receives a total of 60 weekly downloads. As such, @asymmetrik/fhir-json-schema-validator popularity was classified as not popular.
We found that @asymmetrik/fhir-json-schema-validator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.