Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix source examples #38

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spec/section/source-vocabulary.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ and the used compression algorithm. Defaults to no compression.

<pre class="ex-source">
&lt;#JSON&gt; a rml:LogicalSource;
rml:source [ a rml:Source, dcat:Distribution
rml:source [ a rml:Source, dcat:Distribution;
dcat:accessURL &lt;file:///path/to/data.json.gz&gt;;
rml:null ""; # empty string as NULL besides default null character
rml:compression rml:gzip; # GZip compression
Expand Down Expand Up @@ -196,7 +196,7 @@ The following example show a Source of an CSV file.

<pre class="ex-source">
&lt;#CSV&gt; 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 "";
Expand Down
Loading