From 67feccb9a2f8f1cc7761e5948489efd54b7a9f5c Mon Sep 17 00:00:00 2001 From: Vladimir Alexiev Date: Fri, 29 Nov 2024 15:40:10 +0200 Subject: [PATCH] correct curies in ttl `` is a URI in a new illegal scheme `kvin:`. `kvin:value` is a proper curie (prefixed name) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index addfbb37..eed9fb45 100644 --- a/README.md +++ b/README.md @@ -41,15 +41,15 @@ A concrete example for modeling the captured force data of a strain gauge could ``` ### RDF format For representing time-series data in plain RDF the following encoding is used: -``` -S P [ O ; T ] . +```ttl +S P [ kvin:value O ; kvin:time T ] . ``` The data of the strain gauge example above could then expressed as: -``` +```ttl @base . - [ 7.10096884 ; 1541521440000 ] . + p:force [ kvin:value 7.10096884 ; kvin:time 1541521440000 ] . ``` ## Data insertion and retrieval