Datasets:
Tasks:
Document Question Answering
Size:
n<1K
Tags:
benchmark
document-ai
information-extraction
structured-extraction
key-information-extraction
ocr
License:
File size: 1,798 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 | {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"description": "credit agreement cover page identifying the parties, amount and date, plus the schedule of lenders and their commitment amounts.",
"properties": {
"agreementType": {
"type": "string",
"description": "the type or title of the credit agreement exactly as printed on the cover, excluding the dollar amount."
},
"aggregateCommitmentAmount": {
"type": "number",
"description": "the total facility amount printed on the cover, as a plain number without currency symbol or commas."
},
"agreementDate": {
"type": "string",
"description": "the date the agreement is dated as of, in YYYY-MM-DD format."
},
"borrower": {
"type": "string",
"description": "the name of the entity identified as the Borrower on the cover."
},
"syndicationAgent": {
"type": "string",
"description": "the name of the bank identified as the Syndication Agent on the cover."
},
"administrativeAgent": {
"type": "string",
"description": "the name of the bank identified as the Administrative Agent on the cover."
},
"lenders": {
"type": "array",
"description": "each lender row from the LENDERS AND COMMITMENTS schedule. exclude any total/summary row such as the Total line.",
"items": {
"type": "object",
"properties": {
"lenderName": {
"type": "string",
"description": "the lender name exactly as printed on the row."
},
"commitment": {
"type": "number",
"description": "the lender's commitment amount, as a plain number without currency symbol or commas."
}
}
}
}
}
} |