metadata-qa-api
metadata-qa-api copied to clipboard
Metadata Quality Assessment Framework API
Hi @pkiraly this feature is super interesting! But - what does it do exactly? I got some idea from your docs, but not sure. It guesses the language of a...
Syntactical correctness of values could be measured by matching them to a REGEX that is defined in the schema. Would this be a useful feature for the framework? I can...
SHACL defines a set of constraint with the intention of validating RDF statements (see https://www.w3.org/TR/shacl/#core-components-value-type). I think that a subset of this vocabulary could be used in this framework as...
When a field is present, but the value is an empty string, should it be counted as present or absent during completeness measurement? In CSV, there is not really a...
``` TargetObjectsOf := predicate:IRI ``` sh:targetObjectsOf: A TargetObjectsOf matches any object node in the data graph with a triple (_, predicate, node) where "_" is any node. In a graph...
``` TargetSubjectsOf := predicate:IRI ``` sh:targetSubjectsOf: A TargetSubjectsOf matches any subject node in the data graph with a triple (node, predicate, _) where "_" is any node. ``` # In...
``` TargetClass := type:IRI ``` sh:targetClass: A TargetClass matches any node in the data graph with the triple (node, rdf:type, type) or any node which is of a type which...
``` TargetNode := node:IRI|literal|BNode ``` sh:targetNode: A TargetNode matches node if node appears as a node (any subject or object in a triple) in the data graph. ``` # In...