-
Notifications
You must be signed in to change notification settings - Fork 9
/
csvw.json
1559 lines (1559 loc) · 45.2 KB
/
csvw.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"@context": {
"as": "https://www.w3.org/ns/activitystreams#",
"cc": "http://creativecommons.org/ns#",
"csvw": "http://www.w3.org/ns/csvw#",
"ctag": "http://commontag.org/ns#",
"dc": "http://purl.org/dc/terms/",
"dc11": "http://purl.org/dc/elements/1.1/",
"dcat": "http://www.w3.org/ns/dcat#",
"dcterms": "http://purl.org/dc/terms/",
"dctypes": "http://purl.org/dc/dcmitype/",
"dqv": "http://www.w3.org/ns/dqv#",
"duv": "https://www.w3.org/TR/vocab-duv#",
"foaf": "http://xmlns.com/foaf/0.1/",
"gr": "http://purl.org/goodrelations/v1#",
"grddl": "http://www.w3.org/2003/g/data-view#",
"ical": "http://www.w3.org/2002/12/cal/icaltzd#",
"ldp": "http://www.w3.org/ns/ldp#",
"ma": "http://www.w3.org/ns/ma-ont#",
"oa": "http://www.w3.org/ns/oa#",
"og": "http://ogp.me/ns#",
"org": "http://www.w3.org/ns/org#",
"owl": "http://www.w3.org/2002/07/owl#",
"prov": "http://www.w3.org/ns/prov#",
"qb": "http://purl.org/linked-data/cube#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfa": "http://www.w3.org/ns/rdfa#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"rev": "http://purl.org/stuff/rev#",
"rif": "http://www.w3.org/2007/rif#",
"rr": "http://www.w3.org/ns/r2rml#",
"schema": "http://schema.org/",
"sd": "http://www.w3.org/ns/sparql-service-description#",
"sioc": "http://rdfs.org/sioc/ns#",
"skos": "http://www.w3.org/2004/02/skos/core#",
"skosxl": "http://www.w3.org/2008/05/skos-xl#",
"v": "http://rdf.data-vocabulary.org/#",
"vcard": "http://www.w3.org/2006/vcard/ns#",
"void": "http://rdfs.org/ns/void#",
"wdr": "http://www.w3.org/2007/05/powder#",
"wrds": "http://www.w3.org/2007/05/powder-s#",
"xhv": "http://www.w3.org/1999/xhtml/vocab#",
"xml": "rdf:XMLLiteral",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"json": "csvw:JSON",
"any": "xsd:anyAtomicType",
"anyAtomicType": "xsd:anyAtomicType",
"binary": "xsd:base64Binary",
"datetime": "xsd:dateTime",
"describedby": "wrds:describedby",
"html": "rdf:HTML",
"license": "xhv:license",
"maximum": "csvw:maxInclusive",
"minimum": "csvw:minInclusive",
"number": "xsd:double",
"role": "xhv:role",
"anyURI": "xsd:anyURI",
"base64Binary": "xsd:base64Binary",
"boolean": "xsd:boolean",
"byte": "xsd:byte",
"date": "xsd:date",
"dateTime": "xsd:dateTime",
"dayTimeDuration": "xsd:dayTimeDuration",
"dateTimeStamp": "xsd:dateTimeStamp",
"decimal": "xsd:decimal",
"double": "xsd:double",
"duration": "xsd:duration",
"float": "xsd:float",
"gDay": "xsd:gDay",
"gMonth": "xsd:gMonth",
"gMonthDay": "xsd:gMonthDay",
"gYear": "xsd:gYear",
"gYearMonth": "xsd:gYearMonth",
"hexBinary": "xsd:hexBinary",
"int": "xsd:int",
"integer": "xsd:integer",
"language": "xsd:language",
"long": "xsd:long",
"Name": "xsd:Name",
"NCName": "xsd:NCName",
"NMTOKEN": "xsd:NMTOKEN",
"negativeInteger": "xsd:negativeInteger",
"nonNegativeInteger": "xsd:nonNegativeInteger",
"nonPositiveInteger": "xsd:nonPositiveInteger",
"normalizedString": "xsd:normalizedString",
"positiveInteger": "xsd:positiveInteger",
"QName": "xsd:QName",
"short": "xsd:short",
"string": "xsd:string",
"time": "xsd:time",
"token": "xsd:token",
"unsignedByte": "xsd:unsignedByte",
"unsignedInt": "xsd:unsignedInt",
"unsignedLong": "xsd:unsignedLong",
"unsignedShort": "xsd:unsignedShort",
"yearMonthDuration": "xsd:yearMonthDuration",
"Cell": "csvw:Cell",
"Column": "csvw:Column",
"Datatype": "csvw:Datatype",
"Dialect": "csvw:Dialect",
"Direction": "csvw:Direction",
"ForeignKey": "csvw:ForeignKey",
"NumericFormat": "csvw:NumericFormat",
"Row": "csvw:Row",
"Schema": "csvw:Schema",
"Table": "csvw:Table",
"TableGroup": "csvw:TableGroup",
"TableReference": "csvw:TableReference",
"Transformation": "csvw:Transformation",
"aboutUrl": {
"@id": "csvw:aboutUrl",
"@type": "@id"
},
"base": {
"@id": "csvw:base",
"@language": null
},
"columnReference": {
"@id": "csvw:columnReference",
"@language": null,
"@container": "@list"
},
"columns": {
"@id": "csvw:column",
"@type": "@id",
"@container": "@list"
},
"commentPrefix": {
"@id": "csvw:commentPrefix",
"@language": null
},
"datatype": {
"@id": "csvw:datatype",
"@type": "@vocab"
},
"decimalChar": {
"@id": "csvw:decimalChar",
"@language": null
},
"default": {
"@id": "csvw:default",
"@language": null
},
"describes": {
"@id": "csvw:describes"
},
"delimiter": {
"@id": "csvw:delimiter",
"@language": null
},
"dialect": {
"@id": "csvw:dialect",
"@type": "@id"
},
"doubleQuote": {
"@id": "csvw:doubleQuote",
"@type": "xsd:boolean"
},
"encoding": {
"@id": "csvw:encoding",
"@language": null
},
"foreignKeys": {
"@id": "csvw:foreignKey",
"@type": "@id"
},
"format": {
"@id": "csvw:format",
"@language": null
},
"groupChar": {
"@id": "csvw:groupChar",
"@type": "NumericFormat,xsd:string"
},
"header": {
"@id": "csvw:header",
"@type": "xsd:boolean"
},
"headerRowCount": {
"@id": "csvw:headerRowCount",
"@type": "xsd:nonNegativeInteger"
},
"lang": {
"@id": "csvw:lang",
"@language": null
},
"length": {
"@id": "csvw:length",
"@type": "xsd:nonNegativeInteger"
},
"lineTerminators": {
"@id": "csvw:lineTerminators",
"@language": null
},
"maxExclusive": {
"@id": "csvw:maxExclusive",
"@type": "xsd:integer"
},
"maxInclusive": {
"@id": "csvw:maxInclusive",
"@type": "xsd:integer"
},
"maxLength": {
"@id": "csvw:maxLength",
"@type": "xsd:nonNegativeInteger"
},
"minExclusive": {
"@id": "csvw:minExclusive",
"@type": "xsd:integer"
},
"minInclusive": {
"@id": "csvw:minInclusive",
"@type": "xsd:integer"
},
"minLength": {
"@id": "csvw:minLength",
"@type": "xsd:nonNegativeInteger"
},
"name": {
"@id": "csvw:name",
"@language": null
},
"notes": {
"@id": "csvw:note"
},
"null": {
"@id": "csvw:null",
"@language": null
},
"ordered": {
"@id": "csvw:ordered",
"@type": "xsd:boolean"
},
"pattern": {
"@id": "csvw:pattern",
"@language": null
},
"primaryKey": {
"@id": "csvw:primaryKey",
"@language": null
},
"propertyUrl": {
"@id": "csvw:propertyUrl",
"@type": "@id"
},
"quoteChar": {
"@id": "csvw:quoteChar",
"@language": null
},
"reference": {
"@id": "csvw:reference",
"@type": "@id"
},
"referencedRows": {
"@id": "csvw:referencedRow"
},
"required": {
"@id": "csvw:required",
"@type": "xsd:boolean"
},
"resource": {
"@id": "csvw:resource",
"@type": "xsd:anyURI"
},
"row": {
"@id": "csvw:row",
"@type": "@id",
"@container": "@set"
},
"rowTitles": {
"@id": "csvw:rowTitle",
"@language": null
},
"rownum": {
"@id": "csvw:rownum",
"@type": "xsd:integer"
},
"scriptFormat": {
"@id": "csvw:scriptFormat",
"@type": "xsd:anyURI"
},
"schemaReference": {
"@id": "csvw:schemaReference",
"@type": "xsd:anyURI"
},
"separator": {
"@id": "csvw:separator",
"@language": null
},
"skipBlankRows": {
"@id": "csvw:skipBlankRows",
"@type": "xsd:boolean"
},
"skipColumns": {
"@id": "csvw:skipColumns",
"@type": "xsd:nonNegativeInteger"
},
"skipInitialSpace": {
"@id": "csvw:skipInitialSpace",
"@type": "xsd:boolean"
},
"skipRows": {
"@id": "csvw:skipRows",
"@type": "xsd:nonNegativeInteger"
},
"source": {
"@id": "csvw:source",
"@language": null
},
"suppressOutput": {
"@id": "csvw:suppressOutput",
"@type": "xsd:boolean"
},
"tables": {
"@id": "csvw:table",
"@type": "@id",
"@container": "@set"
},
"tableDirection": {
"@id": "csvw:tableDirection",
"@type": "@vocab"
},
"tableSchema": {
"@id": "csvw:tableSchema",
"@type": "@id"
},
"targetFormat": {
"@id": "csvw:targetFormat",
"@type": "xsd:anyURI"
},
"transformations": {
"@id": "csvw:transformations",
"@type": "@id"
},
"textDirection": {
"@id": "csvw:textDirection",
"@type": "@vocab"
},
"titles": {
"@id": "csvw:title",
"@container": "@language"
},
"trim": {
"@id": "csvw:trim",
"@type": "xsd:boolean"
},
"url": {
"@id": "csvw:url",
"@type": "xsd:anyURI"
},
"valueUrl": {
"@id": "csvw:valueUrl",
"@type": "@id"
},
"virtual": {
"@id": "csvw:virtual",
"@type": "xsd:boolean"
},
"JSON": "csvw:JSON",
"uriTemplate": "csvw:uriTemplate"
},
"@graph": {
"@context": {
"id": "@id",
"type": "@type",
"dc:title": {
"@container": "@language"
},
"dc:description": {
"@container": "@language"
},
"dc:date": {
"@type": "xsd:date"
},
"rdfs:comment": {
"@container": "@language"
},
"rdfs:domain": {
"@type": "@id"
},
"rdfs:label": {
"@container": "@language"
},
"rdfs:range": {
"@type": "@id"
},
"rdfs:seeAlso": {
"@type": "@id"
},
"rdfs:subClassOf": {
"@type": "@id"
},
"rdfs:subPropertyOf": {
"@type": "@id"
},
"owl:equivalentClass": {
"@type": "@vocab"
},
"owl:equivalentProperty": {
"@type": "@vocab"
},
"owl:oneOf": {
"@container": "@list",
"@type": "@vocab"
},
"owl:imports": {
"@type": "@id"
},
"owl:versionInfo": {
"@type": "@id"
},
"owl:inverseOf": {
"@type": "@vocab"
},
"owl:unionOf": {
"@type": "@vocab",
"@container": "@list"
},
"rdfs_classes": {
"@reverse": "rdfs:isDefinedBy",
"@type": "@id"
},
"rdfs_properties": {
"@reverse": "rdfs:isDefinedBy",
"@type": "@id"
},
"rdfs_datatypes": {
"@reverse": "rdfs:isDefinedBy",
"@type": "@id"
},
"rdfs_instances": {
"@reverse": "rdfs:isDefinedBy",
"@type": "@id"
}
},
"@id": "http://www.w3.org/ns/csvw#",
"@type": "owl:Ontology",
"dc:title": {
"en": "CSVW Namespace Vocabulary Terms"
},
"dc:description": {
"en": "This document describes the RDFS vocabulary description used in the Metadata Vocabulary for Tabular Data [[tabular-metadata]] along with the default JSON-LD Context."
},
"dc:date": "2017-05-23",
"owl:imports": [
"http://www.w3.org/ns/prov"
],
"owl:versionInfo": "https://github.com/w3c/csvw/commit/94898e9f0b073aa09b3334ded2eb5ab3b87b37a9",
"rdfs:seeAlso": [
"http://www.w3.org/TR/tabular-metadata"
],
"rdfs_classes": [
{
"@id": "csvw:Cell",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Cell"
},
"rdfs:comment": {
"en": "A Cell represents a cell at the intersection of a Row and a Column within a Table."
}
},
{
"@id": "csvw:Column",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Column Description"
},
"rdfs:comment": {
"en": "A Column represents a vertical arrangement of Cells within a Table."
}
},
{
"@id": "csvw:Datatype",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Datatype"
},
"rdfs:comment": {
"en": "Describes facets of a datatype."
}
},
{
"@id": "csvw:Dialect",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Dialect Description"
},
"rdfs:comment": {
"en": "A Dialect Description provides hints to parsers about how to parse a linked file."
}
},
{
"@id": "csvw:Direction",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Direction"
},
"rdfs:comment": {
"en": "The class of table/text directions."
}
},
{
"@id": "csvw:ForeignKey",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Foreign Key Definition"
},
"rdfs:comment": {
"en": "Describes relationships between Columns in one or more Tables."
}
},
{
"@id": "csvw:NumericFormat",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Numeric Format"
},
"rdfs:comment": {
"en": "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."
}
},
{
"@id": "csvw:Row",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Row"
},
"rdfs:comment": {
"en": "A Row represents a horizontal arrangement of cells within a Table."
}
},
{
"@id": "csvw:Schema",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Schema"
},
"rdfs:comment": {
"en": "A Schema is a definition of a tabular format that may be common to multiple tables."
}
},
{
"@id": "csvw:Table",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Annotated Table"
},
"rdfs:comment": {
"en": "An annotated table is a table that is annotated with additional metadata."
}
},
{
"@id": "csvw:TableGroup",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Group of Tables"
},
"rdfs:comment": {
"en": "A Group of Tables comprises a set of Annotated Tables and a set of annotations that relate to those Tables."
}
},
{
"@id": "csvw:TableReference",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Table Reference"
},
"rdfs:comment": {
"en": "An object property that identifies a referenced table and a set of referenced columns within that table."
}
},
{
"@id": "csvw:Transformation",
"@type": "rdfs:Class",
"rdfs:label": {
"en": "Transformation Definition"
},
"rdfs:comment": {
"en": "A Transformation Definition is a definition of how tabular data can be transformed into another format."
}
}
],
"rdfs_properties": [
{
"@id": "csvw:aboutUrl",
"@type": "rdf:Property",
"rdfs:label": {
"en": "about URL"
},
"rdfs:comment": {
"en": "A URI template property that MAY be used to indicate what a cell contains information about."
},
"rdfs:domain": {
"owl:unionOf": [
"csvw:TableGroup",
"csvw:Table",
"csvw:Schema",
"csvw:Column"
]
},
"rdfs:range": "csvw:uriTemplate"
},
{
"@id": "csvw:base",
"@type": "rdf:Property",
"rdfs:label": {
"en": "base"
},
"rdfs:comment": {
"en": "An atomic property that contains a single string: a term defined in the default context representing a built-in datatype URL, as listed above."
},
"rdfs:domain": "csvw:Datatype",
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:columnReference",
"@type": "rdf:Property",
"rdfs:label": {
"en": "column reference"
},
"rdfs:comment": {
"en": "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."
},
"rdfs:domain": {
"owl:unionOf": [
"csvw:ForeignKey",
"csvw:TableReference"
]
},
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:column",
"@type": "rdf:Property",
"rdfs:label": {
"en": "column"
},
"rdfs:comment": {
"en": "An array property of column descriptions as described in section 5.6 Columns."
},
"rdfs:domain": "csvw:Schema",
"rdfs:range": "csvw:Column"
},
{
"@id": "csvw:commentPrefix",
"@type": "rdf:Property",
"rdfs:label": {
"en": "comment prefix"
},
"rdfs:comment": {
"en": "An atomic property that sets the comment prefix flag to the single provided value, which MUST be a string."
},
"rdfs:domain": "csvw:Dialect",
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:datatype",
"@type": "rdf:Property",
"rdfs:label": {
"en": "datatype"
},
"rdfs:comment": {
"en": "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."
},
"rdfs:domain": {
"owl:unionOf": [
"csvw:TableGroup",
"csvw:Table",
"csvw:Schema",
"csvw:Column"
]
},
"rdfs:range": {
"owl:unionOf": [
"csvw:Datatype",
"xsd:string"
]
}
},
{
"@id": "csvw:decimalChar",
"@type": "rdf:Property",
"rdfs:label": {
"en": "decimal character"
},
"rdfs:comment": {
"en": "A string whose value is used to represent a decimal point within the number."
},
"rdfs:domain": "csvw:NumericFormat",
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:default",
"@type": "rdf:Property",
"rdfs:label": {
"en": "default"
},
"rdfs:comment": {
"en": "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."
},
"rdfs:domain": {
"owl:unionOf": [
"csvw:TableGroup",
"csvw:Table",
"csvw:Schema",
"csvw:Column"
]
},
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:describes",
"@type": "rdf:Property",
"rdfs:label": {
"en": "describes"
},
"rdfs:comment": {
"en": "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."
},
"rdfs:domain": "csvw:Row"
},
{
"@id": "csvw:delimiter",
"@type": "rdf:Property",
"rdfs:label": {
"en": "delimiter"
},
"rdfs:comment": {
"en": "An atomic property that sets the delimiter flag to the single provided value, which MUST be a string."
},
"rdfs:domain": "csvw:Dialect",
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:dialect",
"@type": "rdf:Property",
"rdfs:label": {
"en": "dialect"
},
"rdfs:comment": {
"en": "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."
},
"rdfs:domain": {
"owl:unionOf": [
"csvw:TableGroup",
"csvw:Table"
]
},
"rdfs:range": "csvw:Dialect"
},
{
"@id": "csvw:doubleQuote",
"@type": "rdf:Property",
"rdfs:label": {
"en": "double quote"
},
"rdfs:comment": {
"en": "A boolean atomic property that, if `true`, sets the escape character flag to `\"`."
},
"rdfs:domain": "csvw:Dialect",
"rdfs:range": "xsd:boolean"
},
{
"@id": "csvw:encoding",
"@type": "rdf:Property",
"rdfs:label": {
"en": "encoding"
},
"rdfs:comment": {
"en": "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\"."
},
"rdfs:domain": "csvw:Dialect",
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:foreignKey",
"@type": "rdf:Property",
"rdfs:label": {
"en": "foreign key"
},
"rdfs:comment": {
"en": "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."
},
"rdfs:domain": {
"owl:unionOf": [
"csvw:Table",
"csvw:Schema"
]
},
"rdfs:range": "csvw:ForeignKey"
},
{
"@id": "csvw:format",
"@type": "rdf:Property",
"rdfs:label": {
"en": "format"
},
"rdfs:comment": {
"en": "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]]."
},
"rdfs:domain": "csvw:Datatype",
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:groupChar",
"@type": "rdf:Property",
"rdfs:label": {
"en": "group character"
},
"rdfs:comment": {
"en": "A string whose value is used to group digits within the number."
},
"rdfs:domain": "csvw:NumericFormat",
"rdfs:range": {
"owl:unionOf": [
"csvw:NumericFormat",
"xsd:string"
]
}
},
{
"@id": "csvw:header",
"@type": "rdf:Property",
"rdfs:label": {
"en": "header"
},
"rdfs:comment": {
"en": "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."
},
"rdfs:domain": "csvw:Dialect",
"rdfs:range": "xsd:boolean"
},
{
"@id": "csvw:headerRowCount",
"@type": "rdf:Property",
"rdfs:label": {
"en": "header row count"
},
"rdfs:comment": {
"en": "An numeric atomic property that sets the header row count flag to the single provided value, which must be a non-negative integer."
},
"rdfs:domain": "csvw:Dialect",
"rdfs:range": "xsd:nonNegativeInteger"
},
{
"@id": "csvw:lang",
"@type": "rdf:Property",
"rdfs:label": {
"en": "language"
},
"rdfs:comment": {
"en": "An atomic property giving a single string language code as defined by [[BCP47]]."
},
"rdfs:domain": {
"owl:unionOf": [
"csvw:TableGroup",
"csvw:Table",
"csvw:Schema",
"csvw:Column"
]
},
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:length",
"@type": "rdf:Property",
"rdfs:label": {
"en": "length"
},
"rdfs:comment": {
"en": "The exact length of the value of the cell."
},
"rdfs:domain": "csvw:Datatype",
"rdfs:range": "xsd:nonNegativeInteger"
},
{
"@id": "csvw:lineTerminators",
"@type": "rdf:Property",
"rdfs:label": {
"en": "line terminators"
},
"rdfs:comment": {
"en": "An atomic property that sets the line terminators flag to either an array containing the single provided string value, or the provided array."
},
"rdfs:domain": "csvw:Dialect",
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:maxExclusive",
"@type": "rdf:Property",
"rdfs:label": {
"en": "max exclusive"
},
"rdfs:comment": {
"en": "An atomic property that contains a single number that is the maximum valid value (exclusive)."
},
"rdfs:domain": "csvw:Datatype",
"rdfs:range": "xsd:integer"
},
{
"@id": "csvw:maxInclusive",
"@type": "rdf:Property",
"rdfs:label": {
"en": "max inclusive"
},
"rdfs:comment": {
"en": "An atomic property that contains a single number that is the maximum valid value (inclusive)."
},
"rdfs:domain": "csvw:Datatype",
"rdfs:range": "xsd:integer"
},
{
"@id": "csvw:maxLength",
"@type": "rdf:Property",
"rdfs:label": {
"en": "max length"
},
"rdfs:comment": {
"en": "A numeric atomic property that contains a single integer that is the maximum length of the value."
},
"rdfs:domain": "csvw:Datatype",
"rdfs:range": "xsd:nonNegativeInteger"
},
{
"@id": "csvw:minExclusive",
"@type": "rdf:Property",
"rdfs:label": {
"en": "min exclusive"
},
"rdfs:comment": {
"en": "An atomic property that contains a single number that is the minimum valid value (exclusive)."
},
"rdfs:domain": "csvw:Datatype",
"rdfs:range": "xsd:integer"
},
{
"@id": "csvw:minInclusive",
"@type": "rdf:Property",
"rdfs:label": {
"en": "min inclusive"
},
"rdfs:comment": {
"en": "An atomic property that contains a single number that is the minimum valid value (inclusive)."
},
"rdfs:domain": "csvw:Datatype",
"rdfs:range": "xsd:integer"
},
{
"@id": "csvw:minLength",
"@type": "rdf:Property",
"rdfs:label": {
"en": "min length"
},
"rdfs:comment": {
"en": "An atomic property that contains a single integer that is the minimum length of the value."
},
"rdfs:domain": "csvw:Datatype",
"rdfs:range": "xsd:nonNegativeInteger"
},
{
"@id": "csvw:name",
"@type": "rdf:Property",
"rdfs:label": {
"en": "name"
},
"rdfs:comment": {
"en": "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."
},
"rdfs:domain": "csvw:Column",
"rdfs:range": "xsd:string"
},
{
"@id": "csvw:note",
"@type": "rdf:Property",
"rdfs:label": {
"en": "note"
},
"rdfs:comment": {
"en": "An array property that provides an array of objects representing arbitrary annotations on the annotated tabular data model."
},
"rdfs:domain": {
"owl:unionOf": [
"csvw:TableGroup",
"csvw:Table"
]
}
},
{
"@id": "csvw:null",
"@type": "rdf:Property",
"rdfs:label": {
"en": "null"
},
"rdfs:comment": {
"en": "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`."
},
"rdfs:domain": {
"owl:unionOf": [
"csvw:TableGroup",