This file is indexed.

/usr/share/aqbanking/imexporters/csv/profiles/full.conf is in libaqbanking-data 5.3.5beta-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
char name="full"
char shortDescr="full profile"
char version="5.3.5"
char longDescr="This profile supports the CSV format"
int import="1"
int export="1"

char type="csv"
char groupNames="transaction", "transfer", "debitnote", "line"
char dateFormat="YYYY/MM/DD"
int utc="0"

# Valid subjects are:
# - transactions: This exports booked transactions (default)
# - notedTransactions: Exports noted transactions
#
char subject="transactions"

# The following vars are used when there is an additional field within a
# record which defines the sign of the amount.
# Some banks use "C" (positive) and "D" (negative) or "Af" (negative) and
# "Bij" (positive)
int usePosNegField="0"
char posNegFieldName="posNeg"
#char positiveValues="Bij", "C"
#char negativeValues="Af", "D"
int defaultIsPositive="1"

# default is "float", other values: "rational"
char valueFormat="rational"

params {
  # if 1 then values are quoted
  quote="1"
  
  # if 1 then a title line will be written containing the names of each
  # column
  title="1"
  
  # special values are "TAB" and "SPACE"
  delimiter=";" 
  
  # this is the group name looked for in the given data to GWEN_CSV_Write
  # if not given then all groups match
  #group="transaction"
  
  # this group contains the definition for each column
  # each variable in this group has its number as name
  # you can use index variables in the names (using square brackets)
  # the value of each of these variables is the name of a variable to be looked
  # up in the data given to GWEN_CSV_Write
  columns {
    1="localCountry"
    2="localBankCode"
    3="localBranchId"
    4="localAccountNumber"
    5="localSuffix"
    6="localIban"
    7="localName"
    8="localBic"
    9="remoteCountry"
    10="remoteBankName"
    11="remoteBankLocation"
    12="remoteBankCode"
    13="remoteBranchId"
    14="remoteAccountNumber"
    15="remoteSuffix"
    16="remoteIban"
    17="remoteName[0]"
    18="remoteName[1]"
    19="remoteBic"
    20="uniqueId"
    21="idForApplication"
    22="groupId"
    23="valutaDate"
    24="date"
    25="value/value"
    26="value/currency"
    27="fees/value"
    28="fees/currency"
    29="textKey"
    30="textKeyExt"
    31="transactionKey"
    32="customerReference"
    33="bankReference"
    34="transactionCode"
    35="transactionText"
    36="primanota"
    37="fiId"
    38="purpose[0]"
    39="purpose[1]"
    40="purpose[2]"
    41="purpose[3]"
    42="purpose[4]"
    43="purpose[5]"
    44="purpose[6]"
    45="purpose[7]"
    46="purpose[8]"
    47="purpose[9]"
    48="purpose[10]"
    49="purpose[11]"
    50="category[0]"
    51="category[1]"
    52="category[2]"
    53="category[3]"
    54="category[4]"
    55="category[5]"
    56="category[6]"
    57="category[7]"
    58="period"
    59="cycle"
    60="executionDay"
    61="firstExecutionDate"
    62="lastExecutionDate"
    63="nextExecutionDate"
    64="type"
    65="subType"
    66="status"
    67="charge"
    68="remoteAddrStreet"
    69="remoteAddrZipcode"
    70="remoteAddrCity"
    71="remotePhone"
    72="unitId"
    73="unitIdNameSpace"
    74="units/value"
    75="units/currency"
    76="unitprice/value"
    77="unitprice/currency"
    78="commission/value"
    79="commission/currency"
    80="bankAccountId"
    81="groupId"               # double entry

  } # columns

} # params