Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Latest commit

 

History

History
47 lines (34 loc) · 2.13 KB

README.md

File metadata and controls

47 lines (34 loc) · 2.13 KB

Lyo Validation library

CI Discourse users


The library validates RDF resources against constraints defined either as SHACL or OSLC Resource Shapes.

Getting started

Add the following repository to your POM file:

<repositories>
    <repository>
        <id>lyo-releases</id>
        <name>Eclipse Lyo Releases</name>
        <url>https://repo.eclipse.org/content/repositories/lyo-releases/</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

Now add a dependency for the library:

<dependency>
    <groupId>org.eclipse.lyo</groupId>
    <artifactId>lyo-validation</artifactId>
    <version>2.3.0</version>
</dependency>

Start by reading the library's main interface class Validator on Javadoc.

You can also review the library's unit test cases that shows how to use this interface.

Finally, you can review the sample application, which shows 3 validation examples, where:

  • an RDF resource (jena model) is validated against a SHACL shape (another jena model).
  • An java object (representing an RDF resource) is validated against SHACL annotations defined on its Java class.
  • An java object (representing an RDF resource) is validated against OSLC annotations defined on its Java class.