From 66e1338c1456b84935c7e3214f54c6328d381ba8 Mon Sep 17 00:00:00 2001 From: Michael Freund Date: Tue, 30 Jan 2024 16:08:02 +0100 Subject: [PATCH] spec: fix source examples --- spec/section/source-vocabulary.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/section/source-vocabulary.md b/spec/section/source-vocabulary.md index 638cf82..4010f7d 100644 --- a/spec/section/source-vocabulary.md +++ b/spec/section/source-vocabulary.md @@ -134,7 +134,7 @@ and the used compression algorithm. Defaults to no compression.
 <#JSON> a rml:LogicalSource;
-     rml:source [ a rml:Source, dcat:Distribution
+     rml:source [ a rml:Source, dcat:Distribution;
        dcat:accessURL <file:///path/to/data.json.gz>;
        rml:null ""; # empty string as NULL besides default null character
        rml:compression rml:gzip; # GZip compression
@@ -196,7 +196,7 @@ The following example show a Source of an CSV file.
 
 
 <#CSV> a rml:LogicalSource;
-     rml:source [ a rml:Source, a csvw:Table
+     rml:source [ a rml:Source, csvw:Table;
         csvw:url "/path/to/data.csv";
         rml:null "NULL";
         rml:null "";