rdf-tabular 1.0.0 → 3.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +62 -44
- data/UNLICENSE +1 -1
- data/VERSION +1 -1
- data/etc/csvw.jsonld +135 -50
- data/etc/doap.csv +1 -1
- data/etc/doap.csv-metadata.json +1 -1
- data/etc/doap.ttl +14 -13
- data/etc/earl.html +648 -648
- data/etc/earl.jsonld +691 -691
- data/etc/earl.ttl +846 -846
- data/lib/rdf/tabular.rb +3 -3
- data/lib/rdf/tabular/csvw.rb +626 -182
- data/lib/rdf/tabular/format.rb +8 -6
- data/lib/rdf/tabular/literal.rb +1 -1
- data/lib/rdf/tabular/metadata.rb +63 -58
- data/lib/rdf/tabular/reader.rb +32 -20
- data/lib/rdf/tabular/uax35.rb +1 -1
- data/spec/data/countries-minimal.json +38 -0
- data/spec/data/countries-minimal.ttl +36 -0
- data/spec/data/countries-standard.json +86 -0
- data/spec/data/countries-standard.ttl +75 -0
- data/spec/data/countries.csv +4 -0
- data/spec/data/countries.csv-minimal.json +16 -0
- data/spec/data/countries.csv-minimal.ttl +19 -0
- data/spec/data/countries.csv-standard.json +33 -0
- data/spec/data/countries.csv-standard.ttl +44 -0
- data/spec/data/countries.html +88 -0
- data/spec/data/countries.json +53 -0
- data/spec/data/countries_embed-minimal.json +38 -0
- data/spec/data/countries_embed-minimal.ttl +36 -0
- data/spec/data/countries_embed-standard.json +86 -0
- data/spec/data/countries_embed-standard.ttl +75 -0
- data/spec/data/countries_embed.html +88 -0
- data/spec/data/countries_html-minimal.json +38 -0
- data/spec/data/countries_html-minimal.ttl +36 -0
- data/spec/data/countries_html-standard.json +86 -0
- data/spec/data/countries_html-standard.ttl +75 -0
- data/spec/data/country-codes-and-names-minimal.json +19 -0
- data/spec/data/country-codes-and-names-minimal.ttl +22 -0
- data/spec/data/country-codes-and-names-standard.json +47 -0
- data/spec/data/country-codes-and-names-standard.ttl +45 -0
- data/spec/data/country-codes-and-names.csv +5 -0
- data/spec/data/country_slice.csv +4 -0
- data/spec/data/junior-roles.csv +3 -0
- data/spec/data/junior-roles.json +54 -0
- data/spec/data/roles-minimal.json +32 -0
- data/spec/data/roles-minimal.ttl +36 -0
- data/spec/data/roles-standard.json +56 -0
- data/spec/data/roles-standard.ttl +66 -0
- data/spec/data/roles.json +23 -0
- data/spec/data/senior-roles.csv +3 -0
- data/spec/data/senior-roles.json +52 -0
- data/spec/data/test232-metadata.json +10 -0
- data/spec/data/test232.csv +3 -0
- data/spec/data/tree-ops-atd.json +1 -0
- data/spec/data/tree-ops-ext-minimal.json +42 -0
- data/spec/data/tree-ops-ext-minimal.ttl +34 -0
- data/spec/data/tree-ops-ext-standard.json +93 -0
- data/spec/data/tree-ops-ext-standard.ttl +82 -0
- data/spec/data/tree-ops-ext.csv +4 -0
- data/spec/data/tree-ops-ext.json +81 -0
- data/spec/data/tree-ops-minimal.json +18 -0
- data/spec/data/tree-ops-minimal.ttl +14 -0
- data/spec/data/tree-ops-standard.json +44 -0
- data/spec/data/tree-ops-standard.ttl +44 -0
- data/spec/data/tree-ops-virtual-minimal.json +32 -0
- data/spec/data/tree-ops-virtual-minimal.ttl +25 -0
- data/spec/data/tree-ops-virtual-standard.json +49 -0
- data/spec/data/tree-ops-virtual-standard.ttl +49 -0
- data/spec/data/tree-ops-virtual.json +48 -0
- data/spec/data/tree-ops.csv +3 -0
- data/spec/data/tree-ops.csv-metadata.json +43 -0
- data/spec/data/tree-ops.html +54 -0
- data/spec/data/tree-ops.tsv +3 -0
- data/spec/format_spec.rb +1 -1
- data/spec/metadata_spec.rb +85 -8
- data/spec/reader_spec.rb +2 -2
- data/spec/suite_helper.rb +2 -2
- data/spec/suite_spec.rb +4 -5
- metadata +147 -37
- data/lib/rdf/tabular/json.rb +0 -0
- data/spec/w3c-csvw +0 -1
@@ -0,0 +1,88 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Example of CSVW metadata in HTML referencing HTML tables</title>
|
4
|
+
<style type="text/css">
|
5
|
+
/* Style Turtle script blocks to be visable */
|
6
|
+
pre.example script {
|
7
|
+
display:block;
|
8
|
+
}
|
9
|
+
</style>
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
<p>This shows an example of embeddeding CSV metadata within an HTML document referencing the following HTML tables which contains the following:</p>
|
13
|
+
<table id="countries">
|
14
|
+
<caption>Countries</caption>
|
15
|
+
<tr><th>countryCode</th><th>latitude</th><th>longitude</th><th>name</th></tr>
|
16
|
+
<tr><td>AD</td><td>42.5</td><td>1.6</td><td>Andorra</td></tr>
|
17
|
+
<tr><td>AE</td><td>23.4</td><td>53.8</td><td>United Arab Emirates</td></tr>
|
18
|
+
<tr><td>AF</td><td>33.9</td><td>67.7</td><td>Afghanistan</td></tr>
|
19
|
+
</table>
|
20
|
+
<table id="country_slice">
|
21
|
+
<caption>Country Slice</caption>
|
22
|
+
<tr><th>countryRef</th><th>year</th><th>population</th></tr>
|
23
|
+
<tr><td>AF</td><td>1960</td><td>9616353</td></tr>
|
24
|
+
<tr><td>AF</td><td>1961</td><td>9799379</td></tr>
|
25
|
+
<tr><td>AF</td><td>1962</td><td>9989846</td></tr>
|
26
|
+
</table>
|
27
|
+
<p>The metadata is describe here in a script element:</p>
|
28
|
+
<pre class="example">
|
29
|
+
<script type="application/csvm+json">
|
30
|
+
{
|
31
|
+
"@context": "http://www.w3.org/ns/csvw",
|
32
|
+
"tables": [{
|
33
|
+
"url": "#countries",
|
34
|
+
"tableSchema": {
|
35
|
+
"columns": [{
|
36
|
+
"name": "countryCode",
|
37
|
+
"titles": "countryCode",
|
38
|
+
"datatype": "string",
|
39
|
+
"propertyUrl": "http://www.geonames.org/ontology{#_name}"
|
40
|
+
}, {
|
41
|
+
"name": "latitude",
|
42
|
+
"titles": "latitude",
|
43
|
+
"datatype": "number"
|
44
|
+
}, {
|
45
|
+
"name": "longitude",
|
46
|
+
"titles": "longitude",
|
47
|
+
"datatype": "number"
|
48
|
+
}, {
|
49
|
+
"name": "name",
|
50
|
+
"titles": "name",
|
51
|
+
"datatype": "string"
|
52
|
+
}],
|
53
|
+
"aboutUrl": "#countries_{countryCode}",
|
54
|
+
"propertyUrl": "http://schema.org/{_name}",
|
55
|
+
"primaryKey": "countryCode"
|
56
|
+
}
|
57
|
+
}, {
|
58
|
+
"url": "#country_slice",
|
59
|
+
"tableSchema": {
|
60
|
+
"columns": [{
|
61
|
+
"name": "countryRef",
|
62
|
+
"titles": "countryRef",
|
63
|
+
"valueUrl": "#countries_{countryRef}"
|
64
|
+
}, {
|
65
|
+
"name": "year",
|
66
|
+
"titles": "year",
|
67
|
+
"datatype": "gYear"
|
68
|
+
}, {
|
69
|
+
"name": "population",
|
70
|
+
"titles": "population",
|
71
|
+
"datatype": "integer"
|
72
|
+
}],
|
73
|
+
"propertyUrl": "http://example.org/{_name}",
|
74
|
+
"foreignKeys": [{
|
75
|
+
"columnReference": "countryRef",
|
76
|
+
"reference": {
|
77
|
+
"resource": "#countries",
|
78
|
+
"columnReference": "countryCode"
|
79
|
+
}
|
80
|
+
}]
|
81
|
+
}
|
82
|
+
}]
|
83
|
+
}
|
84
|
+
</script>
|
85
|
+
</pre>
|
86
|
+
<p>The metadata is also <a rel="describedby" href="countries.json">described in JSON</a>.</p>
|
87
|
+
</body>
|
88
|
+
</html>
|
@@ -0,0 +1,38 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"@id": "http://example.org/countries.csv#AD",
|
4
|
+
"http://www.geonames.org/ontology#countryCode": "AD",
|
5
|
+
"schema:latitude": 42.546245,
|
6
|
+
"schema:longitude": 1.601554,
|
7
|
+
"schema:name": "Andorra"
|
8
|
+
},
|
9
|
+
{
|
10
|
+
"@id": "http://example.org/countries.csv#AE",
|
11
|
+
"http://www.geonames.org/ontology#countryCode": "AE",
|
12
|
+
"schema:latitude": 23.424076,
|
13
|
+
"schema:longitude": 53.847818,
|
14
|
+
"schema:name": "United Arab Emirates"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"@id": "http://example.org/countries.csv#AF",
|
18
|
+
"http://www.geonames.org/ontology#countryCode": "AF",
|
19
|
+
"schema:latitude": 33.93911,
|
20
|
+
"schema:longitude": 67.709953,
|
21
|
+
"schema:name": "Afghanistan"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"countryRef": "http://example.org/countries.csv#AF",
|
25
|
+
"year": "1960",
|
26
|
+
"population": 9616353
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"countryRef": "http://example.org/countries.csv#AF",
|
30
|
+
"year": "1961",
|
31
|
+
"population": 9799379
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"countryRef": "http://example.org/countries.csv#AF",
|
35
|
+
"year": "1962",
|
36
|
+
"population": 9989846
|
37
|
+
}
|
38
|
+
]
|
@@ -0,0 +1,36 @@
|
|
1
|
+
@prefix geonames: <http://www.geonames.org/ontology#> .
|
2
|
+
@prefix schema: <http://schema.org/> .
|
3
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
4
|
+
|
5
|
+
<http://example.org/countries.csv#AD> schema:latitude "42.546245"^^xsd:double;
|
6
|
+
schema:longitude "1.601554"^^xsd:double;
|
7
|
+
schema:name "Andorra";
|
8
|
+
geonames:countryCode "AD" .
|
9
|
+
|
10
|
+
<http://example.org/countries.csv#AE> schema:latitude "23.424076"^^xsd:double;
|
11
|
+
schema:longitude "53.847818"^^xsd:double;
|
12
|
+
schema:name "United Arab Emirates";
|
13
|
+
geonames:countryCode "AE" .
|
14
|
+
|
15
|
+
<http://example.org/countries.csv#AF> schema:latitude "33.93911"^^xsd:double;
|
16
|
+
schema:longitude "67.709953"^^xsd:double;
|
17
|
+
schema:name "Afghanistan";
|
18
|
+
geonames:countryCode "AF" .
|
19
|
+
|
20
|
+
[
|
21
|
+
<http://example.org/country_slice.csv#countryRef> <http://example.org/countries.csv#AF>;
|
22
|
+
<http://example.org/country_slice.csv#population> "9989846"^^xsd:integer;
|
23
|
+
<http://example.org/country_slice.csv#year> "1962"^^xsd:gYear
|
24
|
+
] .
|
25
|
+
|
26
|
+
[
|
27
|
+
<http://example.org/country_slice.csv#countryRef> <http://example.org/countries.csv#AF>;
|
28
|
+
<http://example.org/country_slice.csv#population> "9799379"^^xsd:integer;
|
29
|
+
<http://example.org/country_slice.csv#year> "1961"^^xsd:gYear
|
30
|
+
] .
|
31
|
+
|
32
|
+
[
|
33
|
+
<http://example.org/country_slice.csv#countryRef> <http://example.org/countries.csv#AF>;
|
34
|
+
<http://example.org/country_slice.csv#population> "9616353"^^xsd:integer;
|
35
|
+
<http://example.org/country_slice.csv#year> "1960"^^xsd:gYear
|
36
|
+
] .
|
@@ -0,0 +1,86 @@
|
|
1
|
+
{
|
2
|
+
"tables": [
|
3
|
+
{
|
4
|
+
"url": "http://example.org/countries.csv",
|
5
|
+
"row": [
|
6
|
+
{
|
7
|
+
"url": "http://example.org/countries.csv#row=2",
|
8
|
+
"rownum": 1,
|
9
|
+
"describes": [
|
10
|
+
{
|
11
|
+
"@id": "http://example.org/countries.csv#AD",
|
12
|
+
"http://www.geonames.org/ontology#countryCode": "AD",
|
13
|
+
"schema:latitude": 42.546245,
|
14
|
+
"schema:longitude": 1.601554,
|
15
|
+
"schema:name": "Andorra"
|
16
|
+
}
|
17
|
+
]
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"url": "http://example.org/countries.csv#row=3",
|
21
|
+
"rownum": 2,
|
22
|
+
"describes": [
|
23
|
+
{
|
24
|
+
"@id": "http://example.org/countries.csv#AE",
|
25
|
+
"http://www.geonames.org/ontology#countryCode": "AE",
|
26
|
+
"schema:latitude": 23.424076,
|
27
|
+
"schema:longitude": 53.847818,
|
28
|
+
"schema:name": "United Arab Emirates"
|
29
|
+
}
|
30
|
+
]
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"url": "http://example.org/countries.csv#row=4",
|
34
|
+
"rownum": 3,
|
35
|
+
"describes": [
|
36
|
+
{
|
37
|
+
"@id": "http://example.org/countries.csv#AF",
|
38
|
+
"http://www.geonames.org/ontology#countryCode": "AF",
|
39
|
+
"schema:latitude": 33.93911,
|
40
|
+
"schema:longitude": 67.709953,
|
41
|
+
"schema:name": "Afghanistan"
|
42
|
+
}
|
43
|
+
]
|
44
|
+
}
|
45
|
+
]
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"url": "http://example.org/country_slice.csv",
|
49
|
+
"row": [
|
50
|
+
{
|
51
|
+
"url": "http://example.org/country_slice.csv#row=2",
|
52
|
+
"rownum": 1,
|
53
|
+
"describes": [
|
54
|
+
{
|
55
|
+
"countryRef": "http://example.org/countries.csv#AF",
|
56
|
+
"year": "1960",
|
57
|
+
"population": 9616353
|
58
|
+
}
|
59
|
+
]
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"url": "http://example.org/country_slice.csv#row=3",
|
63
|
+
"rownum": 2,
|
64
|
+
"describes": [
|
65
|
+
{
|
66
|
+
"countryRef": "http://example.org/countries.csv#AF",
|
67
|
+
"year": "1961",
|
68
|
+
"population": 9799379
|
69
|
+
}
|
70
|
+
]
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"url": "http://example.org/country_slice.csv#row=4",
|
74
|
+
"rownum": 3,
|
75
|
+
"describes": [
|
76
|
+
{
|
77
|
+
"countryRef": "http://example.org/countries.csv#AF",
|
78
|
+
"year": "1962",
|
79
|
+
"population": 9989846
|
80
|
+
}
|
81
|
+
]
|
82
|
+
}
|
83
|
+
]
|
84
|
+
}
|
85
|
+
]
|
86
|
+
}
|
@@ -0,0 +1,75 @@
|
|
1
|
+
@prefix csvw: <http://www.w3.org/ns/csvw#> .
|
2
|
+
@prefix geonames: <http://www.geonames.org/ontology#> .
|
3
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
4
|
+
@prefix schema: <http://schema.org/> .
|
5
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
6
|
+
|
7
|
+
<http://example.org/countries.csv#AD> schema:latitude "42.546245"^^xsd:double;
|
8
|
+
schema:longitude "1.601554"^^xsd:double;
|
9
|
+
schema:name "Andorra";
|
10
|
+
geonames:countryCode "AD" .
|
11
|
+
|
12
|
+
<http://example.org/countries.csv#AE> schema:latitude "23.424076"^^xsd:double;
|
13
|
+
schema:longitude "53.847818"^^xsd:double;
|
14
|
+
schema:name "United Arab Emirates";
|
15
|
+
geonames:countryCode "AE" .
|
16
|
+
|
17
|
+
<http://example.org/countries.csv#AF> schema:latitude "33.93911"^^xsd:double;
|
18
|
+
schema:longitude "67.709953"^^xsd:double;
|
19
|
+
schema:name "Afghanistan";
|
20
|
+
geonames:countryCode "AF" .
|
21
|
+
|
22
|
+
[
|
23
|
+
a csvw:TableGroup;
|
24
|
+
csvw:table [
|
25
|
+
a csvw:Table;
|
26
|
+
csvw:row [
|
27
|
+
a csvw:Row;
|
28
|
+
csvw:describes <http://example.org/countries.csv#AD>;
|
29
|
+
csvw:rownum "1"^^xsd:integer;
|
30
|
+
csvw:url <http://example.org/countries.csv#row=2>
|
31
|
+
], [
|
32
|
+
a csvw:Row;
|
33
|
+
csvw:describes <http://example.org/countries.csv#AE>;
|
34
|
+
csvw:rownum "2"^^xsd:integer;
|
35
|
+
csvw:url <http://example.org/countries.csv#row=3>
|
36
|
+
], [
|
37
|
+
a csvw:Row;
|
38
|
+
csvw:describes <http://example.org/countries.csv#AF>;
|
39
|
+
csvw:rownum "3"^^xsd:integer;
|
40
|
+
csvw:url <http://example.org/countries.csv#row=4>
|
41
|
+
];
|
42
|
+
csvw:url <http://example.org/countries.csv>
|
43
|
+
], [
|
44
|
+
a csvw:Table;
|
45
|
+
csvw:row [
|
46
|
+
a csvw:Row;
|
47
|
+
csvw:describes [
|
48
|
+
<http://example.org/country_slice.csv#countryRef> <http://example.org/countries.csv#AF>;
|
49
|
+
<http://example.org/country_slice.csv#population> "9616353"^^xsd:integer;
|
50
|
+
<http://example.org/country_slice.csv#year> "1960"^^xsd:gYear
|
51
|
+
];
|
52
|
+
csvw:rownum "1"^^xsd:integer;
|
53
|
+
csvw:url <http://example.org/country_slice.csv#row=2>
|
54
|
+
], [
|
55
|
+
a csvw:Row;
|
56
|
+
csvw:describes [
|
57
|
+
<http://example.org/country_slice.csv#countryRef> <http://example.org/countries.csv#AF>;
|
58
|
+
<http://example.org/country_slice.csv#population> "9799379"^^xsd:integer;
|
59
|
+
<http://example.org/country_slice.csv#year> "1961"^^xsd:gYear
|
60
|
+
];
|
61
|
+
csvw:rownum "2"^^xsd:integer;
|
62
|
+
csvw:url <http://example.org/country_slice.csv#row=3>
|
63
|
+
], [
|
64
|
+
a csvw:Row;
|
65
|
+
csvw:describes [
|
66
|
+
<http://example.org/country_slice.csv#countryRef> <http://example.org/countries.csv#AF>;
|
67
|
+
<http://example.org/country_slice.csv#population> "9989846"^^xsd:integer;
|
68
|
+
<http://example.org/country_slice.csv#year> "1962"^^xsd:gYear
|
69
|
+
];
|
70
|
+
csvw:rownum "3"^^xsd:integer;
|
71
|
+
csvw:url <http://example.org/country_slice.csv#row=4>
|
72
|
+
];
|
73
|
+
csvw:url <http://example.org/country_slice.csv>
|
74
|
+
]
|
75
|
+
] .
|
@@ -0,0 +1,22 @@
|
|
1
|
+
@prefix : <http://example.org/country-codes-and-names.csv#> .
|
2
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
3
|
+
|
4
|
+
[
|
5
|
+
:country "AL";
|
6
|
+
:name "Albania"
|
7
|
+
] .
|
8
|
+
|
9
|
+
[
|
10
|
+
:country "AI";
|
11
|
+
:name "Anguilla"
|
12
|
+
] .
|
13
|
+
|
14
|
+
[
|
15
|
+
:country "AF";
|
16
|
+
:name "Afghanistan"
|
17
|
+
] .
|
18
|
+
|
19
|
+
[
|
20
|
+
:country "AD";
|
21
|
+
:name "Andorra"
|
22
|
+
] .
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"tables": [{
|
3
|
+
"url": "http://example.org/country-codes-and-names.csv",
|
4
|
+
"row": [
|
5
|
+
{
|
6
|
+
"url": "http://example.org/country-codes-and-names.csv#row=2",
|
7
|
+
"rownum": 1,
|
8
|
+
"describes": [
|
9
|
+
{
|
10
|
+
"country": "AD",
|
11
|
+
"name": "Andorra"
|
12
|
+
}
|
13
|
+
]
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"url": "http://example.org/country-codes-and-names.csv#row=3",
|
17
|
+
"rownum": 2,
|
18
|
+
"describes": [
|
19
|
+
{
|
20
|
+
"country": "AF",
|
21
|
+
"name": "Afghanistan"
|
22
|
+
}
|
23
|
+
]
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"url": "http://example.org/country-codes-and-names.csv#row=4",
|
27
|
+
"rownum": 3,
|
28
|
+
"describes": [
|
29
|
+
{
|
30
|
+
"country": "AI",
|
31
|
+
"name": "Anguilla"
|
32
|
+
}
|
33
|
+
]
|
34
|
+
},
|
35
|
+
{
|
36
|
+
"url": "http://example.org/country-codes-and-names.csv#row=5",
|
37
|
+
"rownum": 4,
|
38
|
+
"describes": [
|
39
|
+
{
|
40
|
+
"country": "AL",
|
41
|
+
"name": "Albania"
|
42
|
+
}
|
43
|
+
]
|
44
|
+
}
|
45
|
+
]
|
46
|
+
}]
|
47
|
+
}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
@prefix : <http://example.org/country-codes-and-names.csv#> .
|
2
|
+
@prefix csvw: <http://www.w3.org/ns/csvw#> .
|
3
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
4
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
5
|
+
|
6
|
+
[
|
7
|
+
a csvw:TableGroup;
|
8
|
+
csvw:table [
|
9
|
+
a csvw:Table;
|
10
|
+
csvw:row [
|
11
|
+
a csvw:Row;
|
12
|
+
csvw:describes [
|
13
|
+
:country "AD";
|
14
|
+
:name "Andorra"
|
15
|
+
];
|
16
|
+
csvw:rownum 1;
|
17
|
+
csvw:url <http://example.org/country-codes-and-names.csv#row=2>
|
18
|
+
], [
|
19
|
+
a csvw:Row;
|
20
|
+
csvw:describes [
|
21
|
+
:country "AF";
|
22
|
+
:name "Afghanistan"
|
23
|
+
];
|
24
|
+
csvw:rownum 2;
|
25
|
+
csvw:url <http://example.org/country-codes-and-names.csv#row=3>
|
26
|
+
], [
|
27
|
+
a csvw:Row;
|
28
|
+
csvw:describes [
|
29
|
+
:country "AI";
|
30
|
+
:name "Anguilla"
|
31
|
+
];
|
32
|
+
csvw:rownum 3;
|
33
|
+
csvw:url <http://example.org/country-codes-and-names.csv#row=4>
|
34
|
+
], [
|
35
|
+
a csvw:Row;
|
36
|
+
csvw:describes [
|
37
|
+
:country "AL";
|
38
|
+
:name "Albania"
|
39
|
+
];
|
40
|
+
csvw:rownum 4;
|
41
|
+
csvw:url <http://example.org/country-codes-and-names.csv#row=5>
|
42
|
+
];
|
43
|
+
csvw:url <http://example.org/country-codes-and-names.csv>
|
44
|
+
]
|
45
|
+
] .
|