@rdfc/shacl-processor-ts

0.1.2 • Public • Published

shacl-processor-ts

Build and tests with Node.js npm

Validate data streams using SHACL.

Functions

Validate an incoming data stream using SHACL. If the incoming data is valid, it is sent unchanged into the outgoing stream. Otherwise, the SHACL validation report is sent into an optional report channel for further investigation.

  • shaclPath: a local file path which points to a SHACL definition.
  • incoming: channel which is used as the data source.
  • outgoing: channel into which valid data is written.
  • report: an optional channel into which the SHACL reports of invalid input data is written. (default: null)
  • validationIsFatal: throw a fatal error if validation fails. (default: false)
  • mime: the internet media type of the incoming data used to initialize the parser. (default: text/turtle)

Limitations

The file type of the incoming data must be known beforehand and be set using the mime parameter in order to initialize the parser. Type agnostic parsers may be available in the feature, making this setting redundant.

SHACL reports are outputted in Turtle using humanized formatting. Prefixes are hard coded for the time being. Ideally, these should be based on the prefixes used in the input data, or omitted at the user's request. Other file types should be made available as well.

const prefixes = new PrefixMapFactory().prefixMap();
prefixes.set("sh", rdf.namedNode("http://www.w3.org/ns/shacl#"));

Readme

Keywords

none

Package Sidebar

Install

npm i @rdfc/shacl-processor-ts

Weekly Downloads

7

Version

0.1.2

License

MIT

Unpacked Size

50.6 kB

Total Files

7

Last publish

Collaborators

  • smessie
  • pietercolpaert
  • ajuvercr
  • julianrojas87