From c046730f6f6a9d3f36c8b6838931fffa1f0704f5 Mon Sep 17 00:00:00 2001 From: Tomasz Pluskiewicz Date: Thu, 18 Jul 2024 13:46:33 +0200 Subject: [PATCH] refactor: better snippet --- relation/core.md | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/relation/core.md b/relation/core.md index 0950ce7..03ddae9 100644 --- a/relation/core.md +++ b/relation/core.md @@ -36,15 +36,24 @@ In case of asymmetric confidence intervals, use `relation:ConfidenceUpperBound` ```turtle [ - meta:dimensionRelation [ - a relation:ConfidenceLowerBound ; - dcterms:type "Confidence interval" ; - meta:relatesTo ex:measurement-dimension ; - ], - meta:dimensionRelation [ - a relation:ConfidenceUpperBound ; - dcterms:type "Confidence interval" ; - meta:relatesTo ex:measurement-dimension ; - ] + sh:property [ + sh:path ex:measurement-dimension ; + ] ; + sh:property [ + sh:path ex:lower-confidence-dimension ; + meta:dimensionRelation [ + a relation:ConfidenceLowerBound ; + dcterms:type "Confidence interval" ; + meta:relatesTo ex:measurement-dimension ; + ] ; + ] ; + sh:property [ + sh:path ex:lower-confidence-dimension ; + meta:dimensionRelation [ + a relation:ConfidenceUpperBound ; + dcterms:type "Confidence interval" ; + meta:relatesTo ex:measurement-dimension ; + ] ; + ] ; ] . ```