Sha256: c05daa3d790ecbca46f987aeb2ba81e2df81171695b34b2dbf2ff4aee455e904

Contents?: true

Size: 1.96 KB

Versions: 8

Compression:

Stored size: 1.96 KB

Contents

@prefix csvw: <http://www.w3.org/ns/csvw#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

[
   a csvw:TableGroup;
   csvw:table [
     a csvw:Table;
     csvw:row [
       a csvw:Row;
       csvw:describes <http://example.org/tree-ops.csv#gid-1>,
         <http://example.org/tree-ops.csv#location-1>,
         <http://example.org/tree-ops.csv#event-2010-10-18>;
       csvw:rownum 1;
       csvw:url <http://example.org/tree-ops.csv#row=2>
     ],  [
       a csvw:Row;
       csvw:describes <http://example.org/tree-ops.csv#gid-2>,
         <http://example.org/tree-ops.csv#location-2>,
         <http://example.org/tree-ops.csv#event-2010-06-02>;
       csvw:rownum 2;
       csvw:url <http://example.org/tree-ops.csv#row=3>
     ];
     csvw:url <http://example.org/tree-ops.csv>
   ]
] .

<http://example.org/tree-ops.csv#gid-1> <http://example.org/tree-ops.csv#trim_cycle> "Large Tree Routine Prune";
   schema:event <http://example.org/tree-ops.csv#event-2010-10-18>;
   schema:location <http://example.org/tree-ops.csv#location-1>;
   schema:name "Celtis australis";
   schema:url <http://example.org/tree-ops.csv#gid-1> .

<http://example.org/tree-ops.csv#location-1> rdf:type schema:PostalAddress;
   schema:streetAddress "ADDISON AV" .

<http://example.org/tree-ops.csv#event-2010-10-18> schema:startDate "2010-10-18"^^xsd:date .

<http://example.org/tree-ops.csv#gid-2> <http://example.org/tree-ops.csv#trim_cycle> "Large Tree Routine Prune";
   schema:event <http://example.org/tree-ops.csv#event-2010-06-02>;
   schema:location <http://example.org/tree-ops.csv#location-2>;
   schema:name "Liquidambar styraciflua";
   schema:url <http://example.org/tree-ops.csv#gid-2> .

<http://example.org/tree-ops.csv#location-2> rdf:type schema:PostalAddress;
   schema:streetAddress "EMERSON ST" .

<http://example.org/tree-ops.csv#event-2010-06-02> schema:startDate "2010-06-02"^^xsd:date .

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rdf-tabular-3.3.0 spec/data/tree-ops-virtual-standard.ttl
rdf-tabular-3.2.1 spec/data/tree-ops-virtual-standard.ttl
rdf-tabular-3.2.0 spec/data/tree-ops-virtual-standard.ttl
rdf-tabular-3.1.1 spec/data/tree-ops-virtual-standard.ttl
rdf-tabular-3.1.0 spec/data/tree-ops-virtual-standard.ttl
rdf-tabular-2.2.2 spec/data/tree-ops-virtual-standard.ttl
rdf-tabular-2.2.1 spec/data/tree-ops-virtual-standard.ttl
rdf-tabular-2.2.0 spec/data/tree-ops-virtual-standard.ttl