Datasets:
Tasks:
Document Question Answering
Size:
n<1K
Tags:
benchmark
document-ai
information-extraction
structured-extraction
key-information-extraction
ocr
License:
File size: 2,773 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 | {
"type": "object",
"additionalProperties": false,
"properties": {
"insurerName": {
"type": "string",
"description": "insurance company name"
},
"policyNumber": {
"type": "string",
"description": "policy number"
},
"policyForm": {
"type": "string",
"description": "policy form code (e.g. HO-3)"
},
"policyEffectiveDate": {
"type": "string",
"format": "date",
"description": "policy effective (start) date"
},
"policyExpirationDate": {
"type": "string",
"format": "date",
"description": "policy expiration (end) date"
},
"insuredName": {
"type": "string",
"description": "named insured(s)"
},
"insuredAddress": {
"type": "string",
"description": "insured property/mailing address on one line"
},
"totalAnnualPremium": {
"type": "number",
"description": "total annual policy premium"
},
"hurricanePremium": {
"type": "number",
"description": "hurricane portion of premium"
},
"nonHurricanePremium": {
"type": "number",
"description": "non-hurricane portion of premium"
},
"allOtherPerilsDeductible": {
"type": "number",
"description": "all other perils deductible amount"
},
"hurricaneDeductiblePercentOfCoverageA": {
"type": "number",
"description": "hurricane deductible as percent of Coverage A (e.g. 2)"
},
"hurricaneDeductibleAmount": {
"type": "number",
"description": "hurricane deductible dollar amount"
},
"coverages": {
"type": "array",
"description": "section I and II coverage lines (Coverage A through F)",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"coverageLetter": {
"type": "string",
"enum": [
"A",
"B",
"C",
"D",
"E",
"F"
],
"description": "coverage letter"
},
"coverageName": {
"type": "string",
"description": "coverage name (e.g. Dwelling)"
},
"limitOfLiability": {
"type": "number",
"description": "limit of liability dollar amount"
}
},
"required": [
"coverageLetter",
"coverageName",
"limitOfLiability"
]
}
}
},
"required": [
"insurerName",
"policyNumber",
"policyForm",
"policyEffectiveDate",
"totalAnnualPremium",
"hurricanePremium",
"nonHurricanePremium",
"hurricaneDeductiblePercentOfCoverageA",
"hurricaneDeductibleAmount",
"coverages"
]
} |