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

 [
    a csvw:TableGroup;
    csvw:table [
      a csvw:Table;
      rdfs:label "date value constraint not matching maximum";
      rdfs:comment "validate the value based on the length constraints described in section 4.6.1 Length Constraints, the value constraints described in section 4.6.2 Value Constraints and the datatype format annotation if one is specified, as described below. If there are any errors, add them to the list of errors for the cell";
      csvw:row [
        a csvw:Row;
        csvw:describes [
          <test211.csv#maxExclusive> "2015-06-04"^^xsd:date;
          <test211.csv#maxInclusive> "2015-06-05"^^xsd:date;
          <test211.csv#maximum> "2015-06-06";
          <test211.csv#minExclusive> "2015-06-06"^^xsd:date;
          <test211.csv#minInclusive> "2015-06-05"^^xsd:date;
          <test211.csv#minimum> "2015-06-05"^^xsd:date
        ];
        csvw:rownum 1;
        csvw:url <test211.csv#row=2>
      ];
      csvw:url <test211.csv>
    ]
 ] .
