
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@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
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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.