@prefix rev:   <http://purl.org/stuff/rev#> .
@prefix rdfa:  <http://www.w3.org/ns/rdfa#> .
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#> .
@prefix org:   <http://www.w3.org/ns/org#> .
@prefix grddl: <http://www.w3.org/2003/g/data-view#> .
@prefix wrds:  <http://www.w3.org/2007/05/powder-s#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix schema: <http://schema.org/> .
@prefix sioc:  <http://rdfs.org/sioc/ns#> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcat:  <http://www.w3.org/ns/dcat#> .
@prefix oa:    <http://www.w3.org/ns/oa#> .
@prefix ma:    <http://www.w3.org/ns/ma-ont#> .
@prefix ctag:  <http://commontag.org/ns#> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dctypes: <http://purl.org/dc/dcmitype/> .
@prefix og:    <http://ogp.me/ns#> .
@prefix dc:    <http://purl.org/dc/terms/> .
@prefix prov:  <http://www.w3.org/ns/prov#> .
@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
@prefix dc11:  <http://purl.org/dc/elements/1.1/> .
@prefix sd:    <http://www.w3.org/ns/sparql-service-description#> .
@prefix void:  <http://rdfs.org/ns/void#> .
@prefix xml:   <http://www.w3.org/XML/1998/namespace> .
@prefix qb:    <http://purl.org/linked-data/cube#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix v:     <http://rdf.data-vocabulary.org/#> .
@prefix rif:   <http://www.w3.org/2007/rif#> .
@prefix owl:   <http://www.w3.org/2002/07/owl#> .
@prefix rr:    <http://www.w3.org/ns/r2rml#> .
@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .
@prefix wdr:   <http://www.w3.org/2007/05/powder#> .
@prefix ical:  <http://www.w3.org/2002/12/cal/icaltzd#> .
@prefix gr:    <http://purl.org/goodrelations/v1#> .
@prefix xhv:   <http://www.w3.org/1999/xhtml/vocab#> .
@prefix skos:  <http://www.w3.org/2004/02/skos/core#> .
@prefix cc:    <http://creativecommons.org/ns#> .
@prefix csvw:  <http://www.w3.org/ns/csvw#> .

csvw:format  a            rdf:Property ;
        rdfs:comment      "An atomic property that contains either a single string or an object that defines the format of a value of this type, used when parsing a string value as described in Parsing Cells in [[tabular-data-model]]."@en ;
        rdfs:domain       csvw:Datatype ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "format"@en ;
        rdfs:range        xsd:string .

csvw:length  a            rdf:Property ;
        rdfs:comment      "The exact length of the value of the cell."@en ;
        rdfs:domain       csvw:Datatype ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "length"@en ;
        rdfs:range        xsd:nonNegativeInteger .

csvw:tabularMetadata  a   prov:Role ;
        rdfs:comment      "Describes the role of a Metadata file in the tabular data mapping."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Tabular Metadata"@en .

csvw:pattern  a           rdf:Property ;
        rdfs:comment      "A regular expression string, in the syntax and interpreted as defined by [[ECMASCRIPT]]."@en ;
        rdfs:domain       csvw:NumericFormat ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "pattern"@en ;
        rdfs:range        xsd:string .

csvw:rowTitle  a          rdf:Property ;
        rdfs:comment      "A column reference property that holds either a single reference to a column description object or an array of references."@en ;
        rdfs:domain       csvw:Schema ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "row titles"@en ;
        rdfs:range        xsd:string .

csvw:maxLength  a         rdf:Property ;
        rdfs:comment      "A numeric atomic property that contains a single integer that is the maximum length of the value."@en ;
        rdfs:domain       csvw:Datatype ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "max length"@en ;
        rdfs:range        xsd:nonNegativeInteger .

csvw:resource  a          rdf:Property ;
        rdfs:comment      "A link property holding a URL that is the identifier for a specific table that is being referenced."@en ;
        rdfs:domain       csvw:TableReference ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "resource"@en ;
        rdfs:range        xsd:anyURI .

csvw:delimiter  a         rdf:Property ;
        rdfs:comment      "An atomic property that sets the delimiter flag to the single provided value, which MUST be a string."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "delimiter"@en ;
        rdfs:range        xsd:string .

csvw:ordered  a           rdf:Property ;
        rdfs:comment      "A boolean atomic property taking a single value which indicates whether a list that is the value of the cell is ordered (if `true`) or unordered (if `false`)."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "ordered"@en ;
        rdfs:range        xsd:boolean .

csvw:headerRowCount  a    rdf:Property ;
        rdfs:comment      "An numeric atomic property that sets the header row count flag to the single provided value, which must be a non-negative integer."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "header row count"@en ;
        rdfs:range        xsd:nonNegativeInteger .

csvw:trim  a              rdf:Property ;
        rdfs:comment      "An atomic property that, if the boolean `true`, sets the trim flag to `true` and if the boolean `false` to `false`. If the value provided is a string, sets the trim flag to the provided value, which must be one of \"true\", \"false\", \"start\" or \"end\"."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "trim"@en ;
        rdfs:range        xsd:boolean .

csvw:datatype  a          rdf:Property ;
        rdfs:comment      "An object property that contains either a single string that is the main datatype of the values of the cell or a datatype description object. If the value of this property is a string, it MUST be one of the built-in datatypes defined in section 5.11.1 Built-in Datatypes or an absolute URL; if it is an object then it describes a more specialised datatype. "@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "datatype"@en ;
        rdfs:range        [ owl:unionOf  ( csvw:Datatype xsd:string ) ] .

csvw:scriptFormat  a      rdf:Property ;
        rdfs:comment      "A link property giving the single URL for the format that is used by the script or template."@en ;
        rdfs:domain       csvw:Transformation ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "script format"@en ;
        rdfs:range        xsd:anyURI .

csvw:targetFormat  a      rdf:Property ;
        rdfs:comment      "A link property giving the single URL for the format that will be created through the transformation."@en ;
        rdfs:domain       csvw:Transformation ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "target format"@en ;
        rdfs:range        xsd:anyURI .

csvw:lineTerminators  a   rdf:Property ;
        rdfs:comment      "An atomic property that sets the line terminators flag to either an array containing the single provided string value, or the provided array."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "line terminators"@en ;
        rdfs:range        xsd:string .

csvw:source  a            rdf:Property ;
        rdfs:comment      "A single string atomic property that provides, if specified, the format to which the tabular data should be transformed prior to the transformation using the script or template."@en ;
        rdfs:domain       csvw:Transformation ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "source"@en ;
        rdfs:range        xsd:string .

csvw:columnReference  a   rdf:Property ;
        rdfs:comment      "A column reference property that holds either a single reference to a column description object within this schema, or an array of references. These form the referencing columns for the foreign key definition."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:ForeignKey csvw:TableReference ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "column reference"@en ;
        rdfs:range        xsd:string .

csvw:minLength  a         rdf:Property ;
        rdfs:comment      "An atomic property that contains a single integer that is the minimum length of the value."@en ;
        rdfs:domain       csvw:Datatype ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "min length"@en ;
        rdfs:range        xsd:nonNegativeInteger .

csvw:skipInitialSpace
        a                 rdf:Property ;
        rdfs:comment      "A boolean atomic property that, if `true`, sets the trim flag to \"start\". If `false`, to `false`."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "skip initial space"@en ;
        rdfs:range        xsd:boolean .

csvw:decimalChar  a       rdf:Property ;
        rdfs:comment      "A string whose value is used to represent a decimal point within the number."@en ;
        rdfs:domain       csvw:NumericFormat ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "decimal character"@en ;
        rdfs:range        xsd:string .

csvw:header  a            rdf:Property ;
        rdfs:comment      "A boolean atomic property that, if `true`, sets the header row count flag to `1`, and if `false` to `0`, unless headerRowCount is provided, in which case the value provided for the header property is ignored."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "header"@en ;
        rdfs:range        xsd:boolean .

csvw:TableReference  a    rdfs:Class ;
        rdfs:comment      "An object property that identifies a referenced table and a set of referenced columns within that table."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Table Reference"@en .

csvw:ForeignKey  a        rdfs:Class ;
        rdfs:comment      "Describes relationships between Columns in one or more Tables."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Foreign Key Definition"@en .

csvw:NumericFormat  a     rdfs:Class ;
        rdfs:comment      "If the datatype is a numeric type, the format property indicates the expected format for that number. Its value must be either a single string or an object with one or more properties."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Numeric Format"@en .

csvw:reference  a         rdf:Property ;
        rdfs:comment      "An object property that identifies a **referenced table** and a set of **referenced columns** within that table."@en ;
        rdfs:domain       csvw:ForeignKey ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "reference"@en ;
        rdfs:range        csvw:TableReference .

csvw:title  a             rdf:Property ;
        rdfs:comment      "For a Transformation A natural language property that describes the format that will be generated from the transformation.\n\nFor a Column: A natural language property that provides possible alternative names for the column."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:Transformation csvw:Column csvw:Row ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "title"@en .

csvw:   a                owl:Ontology ;
        rdfs:seeAlso     <http://www.w3.org/TR/tabular-metadata> ;
        dc:date          "2015-06-19"^^xsd:date ;
        dc:description   "This document describes the RDFS vocabulary description used in the Metadata Vocabulary for Tabular Data [[tabular-metadata]] along with the default JSON-LD Context."@en ;
        dc:imports       <http://www.w3.org/ns/prov> ;
        dc:title         "CSVW Namespace Vocabulary Terms"@en ;
        owl:versionInfo  <https://github.com/w3c/csvw/commit/6e6daf99e29d6983600d2bc9d1dc8f57712a35c4> .

csvw:rtl  a               csvw:Direction ;
        rdfs:comment      "Indiects text should be processed right to left"@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "right to left"@en .

csvw:null  a              rdf:Property ;
        rdfs:comment      "An atomic property giving the string or strings used for null values within the data. If the string value of the cell is equal to any one of these values, the cell value is `null`."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "null"@en ;
        rdfs:range        xsd:string .

csvw:propertyUrl  a       rdf:Property ;
        rdfs:comment      "An URI template property that MAY be used to create a URI for a property if the table is mapped to another format. "@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "property URL"@en ;
        rdfs:range        csvw:uriTemplate .

csvw:JSON  a              rdfs:Datatype ;
        rdfs:comment      "A literal containing JSON."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "JSON"@en ;
        rdfs:subClassOf   xsd:string .

csvw:doubleQuote  a       rdf:Property ;
        rdfs:comment      "A boolean atomic property that, if `true`, sets the escape character flag to `\"`."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "double quote"@en ;
        rdfs:range        xsd:boolean .

csvw:foreignKey  a        rdf:Property ;
        rdfs:comment      "For a Table: a list of foreign keys on the table.\n\nFor a Schema: an array property of foreign key definitions that define how the values from specified columns within this table link to rows within this table or other tables."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:Table csvw:Schema ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "foreign key"@en ;
        rdfs:range        csvw:ForeignKey .

csvw:uriTemplate  a       rdfs:Datatype ;
        rdfs:comment      ""@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "uri template"@en ;
        rdfs:subClassOf   xsd:anyURI .

csvw:row  a                 rdf:Property ;
        rdfs:comment        "Relates a Table to each Row output."@en ;
        rdfs:domain         csvw:Table ;
        rdfs:isDefinedBy    csvw: ;
        rdfs:label          "row"@en ;
        rdfs:range          csvw:Row ;
        rdfs:subPropertyOf  rdfs:member .

csvw:ltr  a               csvw:Direction ;
        rdfs:comment      "Indicates text should be processed left to right."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "left to right"@en .

csvw:default  a           rdf:Property ;
        rdfs:comment      "An atomic property holding a single string that is used to create a default value for the cell in cases where the original string value is an empty string."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "default"@en ;
        rdfs:range        xsd:string .

csvw:tableSchema  a       rdf:Property ;
        rdfs:comment      "An object property that provides a single schema description as described in section 5.5 Schemas, used as the default for all the tables in the group"@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "table schema"@en ;
        rdfs:range        csvw:Schema .

csvw:Table  a             rdfs:Class ;
        rdfs:comment      "An annotated table is a table that is annotated with additional metadata."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Annotated Table"@en .

csvw:Column  a            rdfs:Class ;
        rdfs:comment      "A Column represents a vertical arrangement of Cells within a Table."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Column Description"@en .

csvw:transformations  a   rdf:Property ;
        rdfs:comment      "An array property of transformation definitions that provide mechanisms to transform the tabular data into other formats."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "transformations"@en ;
        rdfs:range        csvw:Transformation .

csvw:Transformation  a    rdfs:Class ;
        rdfs:comment      "A Transformation Definition is a definition of how tabular data can be transformed into another format."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Transformation Definition"@en .

csvw:minExclusive  a      rdf:Property ;
        rdfs:comment      "An atomic property that contains a single number that is the minimum valid value (exclusive)."@en ;
        rdfs:domain       csvw:Datatype ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "min exclusive"@en ;
        rdfs:range        xsd:integer .

csvw:Cell  a              rdfs:Class ;
        rdfs:comment      "A Cell represents a cell at the intersection of a Row and a Column within a Table."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Cell"@en .

csvw:minInclusive  a      rdf:Property ;
        rdfs:comment      "An atomic property that contains a single number that is the minimum valid value (inclusive)."@en ;
        rdfs:domain       csvw:Datatype ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "min inclusive"@en ;
        rdfs:range        xsd:integer .

csvw:referencedRow  a     rdf:Property ;
        rdfs:comment      "A possibly empty list of pairs of a foreign key and a row in a table within the same group of tables."@en ;
        rdfs:domain       csvw:Row ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "referenced rows"@en .

csvw:virtual  a           rdf:Property ;
        rdfs:comment      "A boolean atomic property taking a single value which indicates whether the column is a virtual column not present in the original source"@en ;
        rdfs:domain       csvw:Column ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "virtual"@en ;
        rdfs:range        xsd:boolean .

csvw:base  a              rdf:Property ;
        rdfs:comment      "An atomic property that contains a single string: a term defined in the default context representing a built-in datatype URL, as listed above."@en ;
        rdfs:domain       csvw:Datatype ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "base"@en ;
        rdfs:range        xsd:string .

csvw:separator  a         rdf:Property ;
        rdfs:comment      "An atomic property that MUST have a single string value that is the character used to separate items in the string value of the cell."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "separator"@en ;
        rdfs:range        xsd:string .

csvw:tableDirection  a    rdf:Property ;
        rdfs:comment      "One of `rtl`, `ltr` or `auto`. Indicates whether the tables in the group should be displayed with the first column on the right, on the left, or based on the first character in the table that has a specific direction."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "table direction"@en ;
        rdfs:range        csvw:Direction .

csvw:csvEncodedTabularData
        a                 prov:Role ;
        rdfs:comment      "Describes the role of a CSV file in the tabular data mapping."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "CSV Encoded Tabular Data"@en .

csvw:table  a               rdf:Property ;
        rdfs:comment        "Relates an Table group to annotated tables."@en ;
        rdfs:domain         csvw:TableGroup ;
        rdfs:isDefinedBy    csvw: ;
        rdfs:label          "table"@en ;
        rdfs:range          csvw:Table ;
        rdfs:subPropertyOf  rdfs:member .

csvw:TableGroup  a        rdfs:Class ;
        rdfs:comment      "A Group of Tables comprises a set of Annotated Tables and a set of annotations that relate to those Tables."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Group of Tables"@en .

csvw:aboutUrl  a          rdf:Property ;
        rdfs:comment      "A URI template property that MAY be used to indicate what a cell contains information about."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "about URL"@en ;
        rdfs:range        csvw:uriTemplate .

csvw:dialect  a           rdf:Property ;
        rdfs:comment      "An object property that provides a single dialect description. If provided, dialect provides hints to processors about how to parse the referenced files to create tabular data models for the tables in the group."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "dialect"@en ;
        rdfs:range        csvw:Dialect .

csvw:Dialect  a           rdfs:Class ;
        rdfs:comment      "A Dialect Description provides hints to parsers about how to parse a linked file."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Dialect Description"@en .

csvw:primaryKey  a        rdf:Property ;
        rdfs:comment      "For Schema: A column reference property that holds either a single reference to a column description object or an array of references.\n\nFor Row: a possibly empty list of cells whose values together provide a unique identifier for this row. This is similar to the name of a column."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:Schema csvw:Row ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "primary key"@en ;
        rdfs:range        xsd:string .

csvw:column  a            rdf:Property ;
        rdfs:comment      "An array property of column descriptions as described in section 5.6 Columns."@en ;
        rdfs:domain       csvw:Schema ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "column"@en ;
        rdfs:range        csvw:Column .

csvw:url  a               rdf:Property ;
        rdfs:comment      "For a Table: This link property gives the single URL of the CSV file that the table is held in, relative to the location of the metadata document.\n\nFor a Transformation: A link property giving the single URL of the file that the script or template is held in, relative to the location of the metadata document."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:Table csvw:Transformation ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "url"@en ;
        rdfs:range        xsd:anyURI .

csvw:schemaReference  a   rdf:Property ;
        rdfs:comment      "A link property holding a URL that is the identifier for a schema that is being referenced."@en ;
        rdfs:domain       csvw:TableReference ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "schema reference"@en ;
        rdfs:range        xsd:anyURI .

csvw:commentPrefix  a     rdf:Property ;
        rdfs:comment      "An atomic property that sets the comment prefix flag to the single provided value, which MUST be a string."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "comment prefix"@en ;
        rdfs:range        xsd:string .

csvw:Schema  a            rdfs:Class ;
        rdfs:comment      "A Schema is a definition of a tabular format that may be common to multiple tables."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Schema"@en .

csvw:skipColumns  a       rdf:Property ;
        rdfs:comment      "An numeric atomic property that sets the `skip columns` flag to the single provided numeric value, which MUST be a non-negative integer."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "skip columns"@en ;
        rdfs:range        xsd:nonNegativeInteger .

csvw:Row  a               rdfs:Class ;
        rdfs:comment      "A Row represents a horizontal arrangement of cells within a Table."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Row"@en .

csvw:suppressOutput  a    rdf:Property ;
        rdfs:comment      "A boolean atomic property. If `true`, suppresses any output that would be generated when converting a table or cells within a column."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:Table csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "suppress output"@en ;
        rdfs:range        xsd:boolean .

csvw:Direction  a         rdfs:Class ;
        rdfs:comment      "The class of table/text directions."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Direction"@en .

csvw:lang  a              rdf:Property ;
        rdfs:comment      "An atomic property giving a single string language code as defined by [[BCP47]]."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "language"@en ;
        rdfs:range        xsd:string .

csvw:groupChar  a         rdf:Property ;
        rdfs:comment      "A string whose value is used to group digits within the number."@en ;
        rdfs:domain       csvw:NumericFormat ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "group character"@en ;
        rdfs:range        [ owl:unionOf  ( csvw:NumericFormat xsd:string ) ] .

csvw:rownum  a            rdf:Property ;
        rdfs:comment      "The position of the row amongst the rows of the Annotated Tabl, starting from 1 "@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "row number"@en ;
        rdfs:range        xsd:integer .

csvw:Datatype  a          rdfs:Class ;
        rdfs:comment      "Describes facets of a datatype."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "Datatype"@en .

csvw:maxExclusive  a      rdf:Property ;
        rdfs:comment      "An atomic property that contains a single number that is the maximum valid value (exclusive)."@en ;
        rdfs:domain       csvw:Datatype ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "max exclusive"@en ;
        rdfs:range        xsd:integer .

csvw:required  a          rdf:Property ;
        rdfs:comment      "A boolean atomic property taking a single value which indicates whether the cell must have a non-null value. The default is `false`. "@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "required"@en ;
        rdfs:range        xsd:boolean .

csvw:maxInclusive  a      rdf:Property ;
        rdfs:comment      "An atomic property that contains a single number that is the maximum valid value (inclusive)."@en ;
        rdfs:domain       csvw:Datatype ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "max inclusive"@en ;
        rdfs:range        xsd:integer .

csvw:quoteChar  a         rdf:Property ;
        rdfs:comment      "An atomic property that sets the quote character flag to the single provided value, which must be a string or `null`."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "quote char"@en ;
        rdfs:range        xsd:string .

csvw:auto  a              csvw:Direction ;
        rdfs:comment      "Determins text direction based on the first character that has a specific direction."@en ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "auto"@en .

csvw:skipBlankRows  a     rdf:Property ;
        rdfs:comment      "An boolean atomic property that sets the `skip blank rows` flag to the single provided boolean value."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "skip blank rows"@en ;
        rdfs:range        xsd:boolean .

csvw:note  a              rdf:Property ;
        rdfs:comment      "An array property that provides an array of objects representing arbitrary annotations on the annotated tabular data model."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "note"@en .

csvw:textDirection  a     rdf:Property ;
        rdfs:comment      "An atomic property that must have a single value that is one of `rtl` or `ltr` (the default)."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "text direction"@en ;
        rdfs:range        csvw:Direction .

csvw:skipRows  a          rdf:Property ;
        rdfs:comment      "An numeric atomic property that sets the `skip rows` flag to the single provided numeric value, which MUST be a non-negative integer."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "skip rows"@en ;
        rdfs:range        xsd:nonNegativeInteger .

csvw:describes  a         rdf:Property ;
        rdfs:comment      "From IANA describes: The relationship A 'describes' B asserts that resource A provides a description of resource B. There are no constraints on the format or representation of either A or B, neither are there any further constraints on either resource."@en ;
        rdfs:domain       csvw:Row ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "describes"@en .

csvw:encoding  a          rdf:Property ;
        rdfs:comment      "An atomic property that sets the encoding flag to the single provided string value, which MUST be a defined in [[encoding]]. The default is \"utf-8\"."@en ;
        rdfs:domain       csvw:Dialect ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "encoding"@en ;
        rdfs:range        xsd:string .

csvw:name  a              rdf:Property ;
        rdfs:comment      "An atomic property that gives a single canonical name for the column. The value of this property becomes the name annotation for the described column."@en ;
        rdfs:domain       csvw:Column ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "name"@en ;
        rdfs:range        xsd:string .

csvw:valueUrl  a          rdf:Property ;
        rdfs:comment      "An URI template property that is used to map the values of cells into URLs."@en ;
        rdfs:domain       [ owl:unionOf  ( csvw:TableGroup csvw:Table csvw:Schema csvw:Column ) ] ;
        rdfs:isDefinedBy  csvw: ;
        rdfs:label        "valueUrl"@en ;
        rdfs:range        csvw:uriTemplate .
