-
Notifications
You must be signed in to change notification settings - Fork 4
/
draft-unicode-separated-values-01.xml
941 lines (819 loc) · 29.2 KB
/
draft-unicode-separated-values-01.xml
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
<?xml version="1.0" encoding="utf-8"?>
<!--
draft-unicode-separated-values-01
Based on draft-rfcxml-general-template-annotated-00
This template includes examples of most of the features of RFCXML with comments explaining
how to customise them, and examples of how to achieve specific formatting.
Documentation:
https://authors.ietf.org/en/templates-and-schemas
To parse this XML, such as to create a PDF:
https://author-tools.ietf.org/
RFCXML vocabulary:
https://authors.ietf.org/rfcxml-vocabulary
Output:
* URL: https://www.ietf.org/archive/id/draft-unicode-separated-values-01.txt
* Status: https://datatracker.ietf.org/doc/draft-unicode-separated-values/
* HTML: https://www.ietf.org/archive/id/draft-unicode-separated-values-01.html
* HTMLized: https://datatracker.ietf.org/doc/html/draft-unicode-separated-values
-->
<?xml-model href="rfc7991bis.rnc"?> <!-- Required for schema validation and schema-aware editing -->
<!-- <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?> -->
<!-- This third-party XSLT can be enabled for direct transformations in XML processors, including most browsers -->
<!DOCTYPE rfc [
<!ENTITY nbsp " ">
<!ENTITY zwsp "​">
<!ENTITY nbhy "‑">
<!ENTITY wj "⁠">
]>
<!-- If further character entities are required then they should be added to the DOCTYPE above.
Use of an external entity file is not recommended. -->
<rfc
xmlns:xi="http://www.w3.org/2001/XInclude"
category="exp"
docName="draft-unicode-separated-values-01"
ipr="trust200902"
obsoletes=""
updates=""
submissionType="IETF"
xml:lang="en"
version="3">
<!--
* docName should be the name of your draft
* category should be one of std, bcp, info, exp, historic
* ipr should be one of trust200902, noModificationTrust200902, noDerivativesTrust200902, pre5378Trust200902
* updates can be an RFC number as NNNN
* obsoletes can be an RFC number as NNNN
-->
<front>
<title abbrev="Unicode Separated Values (USV)">Unicode Separated Values (USV)</title> <!-- https://authors.ietf.org/en/rfcxml-vocabulary#title-4 -->
<!-- The abbreviated title is required if the full title is longer than 39 characters -->
<seriesInfo name="Internet-Draft" value="unicode-separated-values"/> <!-- https://authors.ietf.org/en/rfcxml-vocabulary#seriesinfo -->
<!-- Set value to the name of the draft -->
<author fullname="Joel Parker Henderson" initials="J" role="editor" surname="Henderson"> <!-- https://authors.ietf.org/en/rfcxml-vocabulary#author -->
<!-- initials should not include an initial for the surname -->
<!-- role="editor" is optional -->
<!-- Can have more than one author -->
<!-- all of the following elements are optional -->
<address> <!-- https://authors.ietf.org/en/rfcxml-vocabulary#address -->
<postal>
<!-- Reorder these if your country does things differently -->
<street>601 Van Ness Ave #E3-359</street>
<city>San Francisco</city>
<region>CA</region>
<code>94102</code>
<country>US</country>
<!-- Can use two letter country code -->
</postal>
<phone>1-415-317-2700</phone>
<email>[email protected]</email>
<!-- Can have more than one <email> element -->
<uri>https://linkedin.com/in/joelparkerhenderson</uri>
</address>
</author>
<date year="2024" month="3" day="16"/> <!-- https://authors.ietf.org/en/rfcxml-vocabulary#date -->
<!-- On draft subbmission:
* If only the current year is specified, the current day and month will be used.
* If the month and year are both specified and are the current ones, the current day will
be used
* If the year is not the current one, it is necessary to specify at least a month and day="1" will be used.
-->
<area>General</area>
<workgroup>Internet Engineering Task Force</workgroup>
<!-- "Internet Engineering Task Force" is fine for individual submissions. If this element is
not present, the default is "Network Working Group", which is used by the RFC Editor as
a nod to the history of the RFC Series. -->
<keyword>usv</keyword>
<keyword>data</keyword>
<keyword>format</keyword>
<keyword>markup</keyword>
<!-- Multiple keywords are allowed. Keywords are incorporated into HTML output files for
use by search engines. -->
<abstract>
<t>
Unicode Separated Values (USV) is a data format that uses Unicode
characters to mark parts. USV builds on ASCII separated values (ASV),
and provides pragmatic ways to edit data in text editors by using visual
symbols and layouts.
</t>
</abstract>
</front>
<middle>
<section>
<!-- The default attributes for <section> are numbered="true" and toc="default" -->
<name>Introduction</name>
<t>
Unicode Separated Values (USV) is a data format useful for exchanging
and converting data between various spreadsheet programs, databases,
and streaming data services. This RFC explains USV.
</t>
<t>
Additionally, we propose a new media type "text/usv", to be registered
with IANA.
</t>
<t>
We provide information references for a USV git repository <xref
target="usv-git-repository"/>, a programming implementation as a USV
Rust crate <xref target="usv-rust-crate"/>, and converter tools.
</t>
<section anchor="requirements-language">
<name>Requirements Language</name>
<t>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in BCP
14 <xref target="RFC2119"/>
<xref target="RFC8174"/> when, and only when, they appear in all
capitals, as shown here.
</t>
</section>
<section anchor="media-type-language">
<name>Media Type Language</name>
<t>
The media type normative references are RFC 6838 <xref
target="RFC6838"/>, RFC 2046 <xref target="RFC2046"/>, and RFC 4289
<xref target="RFC4289"/>.
</t>
</section>
<section anchor="abnf-language">
<name>ABNF Language</name>
<t>
The ABNF normative reference is RFC 5234 <xref target="RFC5234"/>.
</t>
</section>
</section>
<section>
<name>USV characters</name>
<t>Separators:</t>
<ul>
<li>File Separator (FS) is U+001C or U+241C</li>
<li>Group Separator (GS) is U+001D or U+241D</li>
<li>Record Separator (RS) is U+001E or U+241E</li>
<li>Unit Separator (US) is U+001F or U+241F</li>
</ul>
<t>Modifiers:</t>
<ul>
<li>Escape (ESC) is U+001B or U+241B</li>
<li>End of Transmission (EOT) is U+0004 or U+2404</li>
</ul>
</section>
<section>
<name>Definition of the USV Format</name>
<section>
<name>Data</name>
<t>
Data comprises units, records, groups, and files.
</t>
</section>
<section>
<name>Unit</name>
<t>
A unit comprises content characters.
It runs until a Unit Separator (US):
</t>
<t>
Example unit and unit separator:
</t>
<sourcecode name="unit-and-unit-separator.usv" type="usv" markers="true">
<![CDATA[
aaa␟
]]>
</sourcecode>
</section>
<section>
<name>Record</name>
<t>
A record comprises units.
It runs until a Record Separator (RS):
</t>
<t>
Example record and record separator:
</t>
<sourcecode name="record-and-record-separator.usv" type="usv" markers="true">
<![CDATA[
aaa␟bbb␟␞
]]>
</sourcecode>
</section>
<section>
<name>Group</name>
<t>
A group comprises records.
It runs until a Group Separator (GS):
</t>
<t>
Example group and group separator:
</t>
<sourcecode name="group-and-group-separator.usv" type="usv" markers="true">
<![CDATA[
aaa␟bbb␟␞ccc␟ddd␟␞␝
]]>
</sourcecode>
</section>
<section>
<name>File</name>
<t>
A file comprises groups.
It runs until a file separator.
</t>
<t>
Example file and file separator:
</t>
<sourcecode name="file-and-file-separator.usv" type="usv" markers="true">
<![CDATA[
aaa␟bbb␟␞ccc␟ddd␟␞␝eee␟fff␟␞ggg␟hhh␟␞␝␜
]]>
</sourcecode>
</section>
<section>
<name>Header</name>
<t>
There may be an optional header appearing as the first item and with
the same format as normal items. This header will contain names
corresponding to the fields in the data, and should contain the same
number of fields as the rest of data. The presence or absence of the
header line should be indicated via the optional "header" parameter
of this media type.
</t>
<t>
For example:
</t>
<sourcecode name="header.usv" type="usv" markers="true">
<![CDATA[
name␟name␟␞aaa␟bbb␟␞
]]>
</sourcecode>
</section>
<section>
<name>Escape (ESC)</name>
<t>
Escape (ESC) makes the next character content.
</t>
<t>
Example: USV with a unit that contains an Escape + End of
Transmission; because of the Escape, the End of Transmission is
treated as content:
</t>
<sourcecode name="header.usv" type="usv" markers="true">
<![CDATA[
a␛␄b␟
]]>
</sourcecode>
</section>
<section>
<name>End of Transmission (EOT)</name>
<t>
End of Transmission (EOT) tells any reader that it can stop reading.
This is can be useful for streaming data, such as to end a connection.
This can also be useful for providing data files that contain USV
data, then EOT, then addition non-USV information such as comments,
images, attachments, etc.
</t>
<ul>
<li>
EOT tells the data reader that it can stop.
</li>
<li>
EOT has no effect on the output content.
</li>
</ul>
<t>
Example of a unit then an End of Transmission:
</t>
<sourcecode name="header.usv" type="usv" markers="true">
<![CDATA[
abc␞␄ignorable
]]>
</sourcecode>
</section>
</section>
<section>
<name>ABNF grammar</name>
<section>
<name>Semantics</name>
<t>usv = *files</t>
<t>file = *groups</t>
<t>group = *records</t>
<t>record = *units</t>
<t>unit = *content-characters</t>
</section>
<section>
<name>Syntax</name>
<t>usv = ( header-and-body / body ) '*' ; anything after the body is chaff</t>
<t>header-and-body = 1*unit-run / 1*record-run / 1*group-run / 1*file-run</t>
<t>body = *unit-run / *record-run / *group-run / *file-run</t>
</section>
<section>
<name>Runs</name>
<t>file-run = *( *spacer-character file *spacer-character FS )</t>
<t>group-run = *( *spacer-character group *spacer-character GS )</t>
<t>record-run = *( *spacer-character record *spacer-character RS )</t>
<t>unit-run = *( *spacer-character unit *spacer-character US )</t>
</section>
<section>
<name>Character classes</name>
<t>content-character = typical-character / ESC '*'</t>
<t>typical-character = '*' - special-character</t>
<t>special-character = US / RS / GS / FS / ESC / EOT</t>
<t>spacer-character = Defined by Unicode Derived Core Property White_Space</t>
</section>
<section>
<name>Unicode symbols</name>
<t>FS = U+001C File Separator / U+241C Symbol for File Separator</t>
<t>GS = U+001D Group Separator / U+241D Symbol for Group Separator</t>
<t>RS = U+001E Record Separator / U+241E Symbol for Record Separator</t>
<t>US = U+001F Unit Separator / U+241F Symbol for Unit Separator</t>
<t>ESC = U+001B Escape / U+241B Symbol for Escape</t>
<t>EOT = U+0004 End of Transmission / U+2404 Symbol for End of Transmission</t>
</section>
</section>
<section>
<name>Examples</name>
<section>
<name>Hello World</name>
<t>
This kind of data ...
</t>
<sourcecode name="hello-world.txt" type="txt" markers="true">
<![CDATA[
hello, world
]]>
</sourcecode>
<t>
... is represented in USV as two units:
</t>
<sourcecode name="hello-world.usv" type="usv" markers="true">
<![CDATA[
hello␟world␟
]]>
</sourcecode>
<t>
If you prefer to see one unit per line, then you can add whitespace,
such as newlines:
</t>
<sourcecode name="hello-world-with-lines.usv" type="usv" markers="true">
<![CDATA[
hello␟
world␟
]]>
</sourcecode>
</section>
<section>
<name>Hello World Goodnight Moon</name>
<t>
This kind of data ...
</t>
<sourcecode name="hello-world-goodnight-moon.txt" type="txt" markers="true">
<![CDATA[
[ hello, world ], [ goodnight, moon ]
]]>
</sourcecode>
<t>
... is represented in USV as two records, each with two units:
</t>
<sourcecode name="hello-world-goodnight-moon.usv" type="usv" markers="true">
<![CDATA[
hello␟world␟␞goodnight␟moon␟␞
]]>
</sourcecode>
<t>
If you prefer to see one record per line, then you can add whitespace,
such as newlines:
</t>
<sourcecode name="hello-world-goodnight-moon-with-lines.usv" type="usv" markers="true">
<![CDATA[
hello␟world␟␞
goodnight␟moon␟␞
]]>
</sourcecode>
</section>
<section>
<name>Units, Records, Groups, Files</name>
<t>
USV with 2 units by 2 records by 2 groups by 2 files:
</t>
<sourcecode name="units-records-groups-files.usv" type="usv" markers="true">
<![CDATA[
a␟b␟␞c␟d␟␞␝e␟f␟␞g␟h␟␞␝␜i␟j␟␞k␟l␟␞␝m␟n␟␞o␟p␟␞␝␜
]]>
</sourcecode>
<t>
If you prefer to see one record per line, then you can add whitespace,
such as newlines:
</t>
<sourcecode name="units-records-groups-files-with-lines.usv" type="usv" markers="true">
<![CDATA[
a␟b␟␞
c␟d␟␞
␝
e␟f␟␞
g␟h␟␞
␝
␜
i␟j␟␞
k␟l␟␞
␝
m␟n␟␞
o␟p␟␞
␝
␜
]]>
</sourcecode>
<t>
If you prefer to see one unit per line, then you can add whitespace,
such as newlines:
</t>
<sourcecode name="units-records-groups-files-with-lines.usv" type="usv" markers="true">
<![CDATA[
a␟
b␟
␞
c␟
d␟
␞
␝
e␟
f␟
␞
g␟
h␟
␞
␝
␜
i␟
j␟
␞
k␟
l␟
␞
␝
m␟
n␟
␞
o␟
p␟
␞
␝
␜
]]>
</sourcecode>
</section>
<section>
<name>Articles</name>
<t>
USV can format paragraphs, such as in this example data stream of
articles; note the units contain leading spacers and trailing spacers.
</t>
<sourcecode name="articles.usv" type="usv" markers="true">
<![CDATA[
Title One
␟
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.
␟␞
Title Two
␟
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
sunt in culpa qui officia deserunt mollit anim id est laborum.
␟␞
Title Three
␟
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium
doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore
veritatis et quasi architecto beatae vitae dicta sunt explicabo.
␟␞
]]>
</sourcecode>
</section>
</section>
<section>
<name>Source Code Examples</name>
<t>These source code examples demonstrate the Rust programming language and the USV Rust crate.</t>
<t>Units:</t>
<sourcecode name="usv-rust-crate-units.rs" type="rust" markers="true">
<![CDATA[
use usv::*;
let str = "a␟b␟";
let units: Units = str.units().collect();
]]>
</sourcecode>
<t>Records:</t>
<sourcecode name="usv-rust-crate-records.rs" type="rust" markers="true">
<![CDATA[
use usv::*;
let str = "a␟b␟␞c␟d␟␞";
let records: Records = str.records().collect();
]]>
</sourcecode>
<t>Groups:</t>
<sourcecode name="usv-rust-crate-groups.rs" type="rust" markers="true">
<![CDATA[
use usv::*;
let str = "a␟b␟␞c␟d␟␞␝e␟f␟␞g␟h␟␞␝";
let groups: Groups = str.groups().collect();
]]>
</sourcecode>
<t>Files:</t>
<sourcecode name="usv-rust-crate-groups.rs" type="rust" markers="true">
<![CDATA[
use usv::*;
let str = "a␟b␟␞c␟d␟␞␝e␟f␟␞g␟h␟␞␝␜i␟j␟␞k␟l␟␞␝m␟n␟␞o␟p␟␞␝␜";
let files: Files = str.files().collect();
]]>
</sourcecode>
</section>
<section>
<!-- All drafts are required to have an IANA considerations section. See RFC 8126 for a guide.-->
<name>MIME media type registration for text/usv</name>
<t>
This section provides the MIME media type registration application information.
</t>
<t>
</t>
<t>
Subject: Registration of MIME media type text/usv
</t>
<t>
MIME media type name: text
</t>
<t>
MIME subtype name: usv
</t>
<t>
Required parameters: none
</t>
<section>
<name>Optional parameters: charset, header</name>
<t>
Common usage of USV is UTF-8, but other character sets defined by IANA
for the "text" tree may be used in conjunction with the "charset"
parameter.
</t>
<t>
The "header" parameter indicates the presence or absence of the
header line. Valid values are "present" or "absent".
Implementors choosing not to use this parameter must make their
own decisions as to whether the header line is present or absent.
</t>
</section>
<section>
<name>Encoding considerations</name>
<t>
This media type uses LF to denote line breaks. However, implementors
should be aware that some implementations may not conform i.e. may
incorrectly use other values.
</t>
</section>
<section>
<name>Security considerations</name>
<t>
USV files contain passive text data that should not pose any
risks. However, it is possible in theory that malicious binary
data may be included in order to exploit potential buffer overruns
in the program processing USV data. Additionally, private data
may be shared via this format (which of course applies to any text
data).
</t>
</section>
<section>
<name>Interoperability considerations</name>
<t>
Implementors should "be conservative in what you do, be liberal in
what you accept from others" (RFC 793 [8]) when processing USV data.
</t>
<t>
Implementations deciding not to use the optional "header"
parameter must make their own decision as to whether the header is
absent or present.
</t>
</section>
<section>
<name>Published specification</name>
<t>
https://github.com/sixarm/usv
</t>
</section>
<section>
<name>Applications that use this media type</name>
<t>
Spreadsheet programs, such as with import/export.
Database programs, such as with loading/saving text.
Data conversion utilities.
</t>
</section>
<section>
<name>Additional information</name>
<t>
Magic number(s): none
</t>
<t>
File extension(s): usv
</t>
<t>
Apple macOS File Type Code(s): TEXT
</t>
<t>
Intended usage: COMMON
</t>
<t>
Author/Change controller: IESG
</t>
<t>Contact: Joel Parker Henderson <[email protected]>
</t>
</section>
</section>
<section anchor="IANA">
<!-- All drafts are required to have an IANA considerations section. See RFC 8126 for a guide.-->
<name>IANA Considerations</name>
<t>We are requesting IANA to create a standard MIME media type "text/usv".</t>
<t>We have filed an IANA request for this, with same contact information.</t>
</section>
<section anchor="Security">
<!-- All drafts are required to have a security considerations section. See RFC 3552 for a guide. -->
<name>Security Considerations</name>
<t>This document should not affect the security of the Internet.</t>
</section>
<!-- NOTE: The Acknowledgements and Contributors sections are at the end of this template -->
<section anchor="Converters">
<!-- All drafts are required to have an IANA considerations section. See RFC 8126 for a guide.-->
<name>Converters</name>
<t>
We implement converters to/from USV and various popular data formats,
including ASCII Separated Values (ASV), Comma Separated Values (CSV),
JavaScript Object Notation (JSON), Microsoft Excel XML (XLSX).
</t>
<ul>
<li>asv-to-usv<xref target="asv-to-usv-rust-crate"/>, usv-to-asv<xref target="usv-to-asv-rust-crate"/></li>
<li>csv-to-usv<xref target="csv-to-usv-rust-crate"/>, usv-to-csv<xref target="usv-to-csv-rust-crate"/></li>
<li>json-to-usv<xref target="json-to-usv-rust-crate"/>, usv-to-json<xref target="usv-to-json-rust-crate"/></li>
<li>xlsx-to-usv<xref target="xlsx-to-usv-rust-crate"/>, usv-to-xlsx<xref target="usv-to-xlsx-rust-crate"/></li>
</ul>
<t>
The converters are provided for informational purposes. The converters
are not part of the specification.
</t>
</section>
</middle>
<back>
<references>
<name>References</name>
<references>
<name>Normative References</name>
<!-- "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words" -->
<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml"/>
<!-- "Augmented BNF for Syntax Specifications: ABNF"-->
<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5234.xml"/>
<!-- "Media Type Specifications and Registration Procedures" -->
<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6838.xml"/>
<!-- ""Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types" -->
<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2046.xml"/>
<!-- "Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures" -->
<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.4289.xml"/>
</references>
<references>
<name>Informative References</name>
<reference anchor="usv-git-repository">
<!-- Example minimum reference -->
<front>
<title>USV git repository at https://github.com/sixarm/usv</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2022"/>
</front>
</reference>
<reference anchor="usv-rust-crate">
<!-- Example minimum reference -->
<front>
<title>USV rust crate at https://crates.io/crates/usv</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2024"/>
</front>
</reference>
<reference anchor="asv-to-usv-rust-crate">
<!-- Example minimum reference -->
<front>
<title>ASV to USV rust crate at https://crates.io/crates/asv-to-usv</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2024"/>
</front>
</reference>
<reference anchor="usv-to-asv-rust-crate">
<!-- Example minimum reference -->
<front>
<title>USV to ASV rust crate at https://crates.io/crates/usv-to-asv</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2024"/>
</front>
</reference>
<reference anchor="csv-to-usv-rust-crate">
<!-- Example minimum reference -->
<front>
<title>CSV to USV rust crate at https://crates.io/crates/csv-to-usv</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2024"/>
</front>
</reference>
<reference anchor="usv-to-csv-rust-crate">
<!-- Example minimum reference -->
<front>
<title>USV to CSV rust crate at https://crates.io/crates/usv-to-csv</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2024"/>
</front>
</reference>
<reference anchor="json-to-usv-rust-crate">
<!-- Example minimum reference -->
<front>
<title>JSON to USV rust crate at https://crates.io/crates/json-to-usv</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2024"/>
</front>
</reference>
<reference anchor="usv-to-json-rust-crate">
<!-- Example minimum reference -->
<front>
<title>USV to JSON rust crate at https://crates.io/crates/usv-to-json</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2024"/>
</front>
</reference>
<reference anchor="xlsx-to-usv-rust-crate">
<!-- Example minimum reference -->
<front>
<title>XLSX to USV rust crate at https://crates.io/crates/xlsx-to-usv</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2024"/>
</front>
</reference>
<reference anchor="usv-to-xlsx-rust-crate">
<!-- Example minimum reference -->
<front>
<title>USV to XLSX rust crate at https://crates.io/crates/usv-to-xlsx</title>
<author initials="J" surname="Henderson">
<organization/>
</author>
<date year="2024"/>
</front>
</reference>
<reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
<!-- Manually added reference -->
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials="S." surname="Bradner" fullname="S. Bradner">
<organization/>
</author>
<date year="1997" month="March"/>
<abstract>
<t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.
</t>
</abstract>
</front>
<seriesInfo name="BCP" value="14"/>
<seriesInfo name="RFC" value="2119"/>
<seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>
</references>
</references>
<section anchor="Acknowledgements" numbered="false">
<!-- an Acknowledgements section is optional -->
<name>Acknowledgements</name>
<t>
The author would like to thank Y. Shafranovich, author of the CSV RFC,
which provided guidance for this USV RFC.
</t>
<t>
A special thank you goes to P.X.V.
</t>
</section>
<section anchor="Contributors" numbered="false">
<!-- a Contributors section is optional -->
<name>Contributors</name>
<t>Thanks to all of the contributors.</t>
<contact fullname="Joel Parker Henderson" initials="J" surname="Henderson"><!-- https://authors.ietf.org/en/rfcxml-vocabulary#contact-->
<!-- including contact information for contributors is optional -->
<address>
<email>[email protected]</email>
</address>
</contact>
</section>
</back>
</rfc>