
 TYPE
{
{   The ANSI EOV1 label contains the following fields:
{
{   CP         Field Name             Content
{  1 ..  3  Label Identifier          'EOV'
{     4     Label Number              '1'
{  5 .. 21   File Identifier           alpha-numeric
{ 22 .. 27  File-set Identifier       alpha-numeric
{ 28 .. 31  File Section Number       numeric
{ 32 .. 35  File Sequence Number      numeric
{ 36 .. 39  Generation Number         numeric
{ 40 .. 41  Generation Version Number numeric
{ 42 .. 47  Creation Date             ' yyddd'
{ 48 .. 53  Expiration Date           ' yyddd'
{    54     Accessibility             alpha-numeric
{ 55 .. 60  Block Count               numeric
{ 61 .. 73  System Code               alpha-numeric
{ 74 .. 80  Reserved to ANSI          '       '
{
    fst$ansi_eov1_label = record
      label_identifier: string (3),
      label_number: string (1),
      file_identifier: string (17),
      file_set_identifier: string (6),
      file_section_number: string (4),
      file_sequence_number: string (4),
      generation_number: string (4),
      generation_version_number: string (2),
      creation_date: string (6),
      expiration_date: string (6),
      accessibility: string (1),
      block_count: string (6),
      system_code: string (13),
      reserved_to_ansi: string (7),
    recend;
