Datasets:
Tasks:
Document Question Answering
Size:
n<1K
Tags:
benchmark
document-ai
information-extraction
structured-extraction
key-information-extraction
ocr
License:
File size: 6,132 Bytes
8143f06 | 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 | {
"type": "object",
"additionalProperties": false,
"properties": {
"invoiceId": {
"type": "string",
"description": "cbc:ID invoice number"
},
"issueDate": {
"type": "string",
"format": "date",
"description": "invoice issue date YYYY-MM-DD"
},
"dueDate": {
"type": "string",
"format": "date",
"description": "payment due date YYYY-MM-DD"
},
"invoiceTypeCode": {
"type": "string",
"description": "invoice type code, e.g. 380"
},
"documentCurrencyCode": {
"type": "string",
"description": "document currency code, e.g. EUR"
},
"taxCurrencyCode": {
"type": "string",
"description": "tax currency code, e.g. SEK"
},
"buyerReference": {
"type": "string",
"description": "buyer reference"
},
"invoicePeriodStartDate": {
"type": "string",
"format": "date",
"description": "invoice period start YYYY-MM-DD"
},
"invoicePeriodEndDate": {
"type": "string",
"format": "date",
"description": "invoice period end YYYY-MM-DD"
},
"supplierName": {
"type": "string",
"description": "supplier party/trading name"
},
"supplierRegistrationName": {
"type": "string",
"description": "supplier legal registration name"
},
"supplierVatId": {
"type": "string",
"description": "supplier VAT company id"
},
"supplierCountryCode": {
"type": "string",
"description": "supplier country code"
},
"customerName": {
"type": "string",
"description": "customer party/trading name"
},
"customerRegistrationName": {
"type": "string",
"description": "customer legal registration name"
},
"customerVatId": {
"type": "string",
"description": "customer VAT company id"
},
"customerCountryCode": {
"type": "string",
"description": "customer country code"
},
"paymentMeansCode": {
"type": "string",
"description": "payment means code, e.g. 30"
},
"payeeIban": {
"type": "string",
"description": "payee financial account id (IBAN)"
},
"payeeBic": {
"type": "string",
"description": "payee financial institution branch id (BIC)"
},
"lineExtensionAmount": {
"type": "number",
"description": "LegalMonetaryTotal line extension amount"
},
"taxExclusiveAmount": {
"type": "number",
"description": "tax exclusive amount"
},
"taxInclusiveAmount": {
"type": "number",
"description": "tax inclusive amount"
},
"allowanceTotalAmount": {
"type": "number",
"description": "total allowances amount"
},
"chargeTotalAmount": {
"type": "number",
"description": "total charges amount"
},
"prepaidAmount": {
"type": "number",
"description": "prepaid amount"
},
"payableAmount": {
"type": "number",
"description": "amount due for payment"
},
"taxTotalAmount": {
"type": "number",
"description": "document tax total amount in document currency"
},
"allowanceCharges": {
"type": "array",
"description": "document-level allowance/charge entries",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"isCharge": {
"type": "boolean",
"description": "true if a charge, false if an allowance/discount"
},
"reason": {
"type": "string",
"description": "allowance or charge reason text"
},
"reasonCode": {
"type": "string",
"description": "allowance or charge reason code"
},
"amount": {
"type": "number",
"description": "allowance/charge amount"
},
"baseAmount": {
"type": [
"number",
"null"
],
"description": "base amount, null if not present"
},
"taxCategoryPercent": {
"type": [
"number",
"null"
],
"description": "applicable tax category percent, null if absent"
}
},
"required": [
"isCharge",
"amount"
]
}
},
"invoiceLines": {
"type": "array",
"description": "one entry per cac:InvoiceLine",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"lineId": {
"type": "string",
"description": "invoice line id"
},
"invoicedQuantity": {
"type": "number",
"description": "invoiced quantity"
},
"unitCode": {
"type": "string",
"description": "quantity unit code, e.g. C62"
},
"lineExtensionAmount": {
"type": "number",
"description": "line net amount"
},
"itemName": {
"type": "string",
"description": "item name"
},
"itemDescription": {
"type": "string",
"description": "item description"
},
"sellersItemId": {
"type": "string",
"description": "seller's item identification id"
},
"priceAmount": {
"type": "number",
"description": "item unit price"
},
"taxCategoryId": {
"type": "string",
"description": "classified tax category id, e.g. S or E"
},
"taxCategoryPercent": {
"type": "number",
"description": "classified tax category VAT percent"
}
},
"required": [
"lineId",
"invoicedQuantity",
"lineExtensionAmount",
"priceAmount"
]
}
}
},
"required": [
"invoiceId",
"issueDate",
"documentCurrencyCode",
"payableAmount",
"invoiceLines"
]
} |