Skip to main content

Interface: PropertyConfiguration

Specifies property abstraction configuration

Properties

PropertyTypeDescription

domain?

readonly string[]

Optional domain constraint for source element of the property. If specified checks RDF type of source element to match one from this set.

id

string

IRI of the "virtual" link

path

string

SPARQL predicate or pattern connecting source element to property value.

Expected bindings (if it is a pattern):

  • ?inst source element
  • ?value property value

Example

Direct configuration: `ex:firstName`

Pattern configuration: `
?inst ex:hasAddress ?addr .
?addr ex:hasApartmentNumber ?value
`