Datasets:
Tasks:
Document Question Answering
Size:
n<1K
Tags:
benchmark
document-ai
information-extraction
structured-extraction
key-information-extraction
ocr
License:
File size: 4,568 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 | {
"type": "object",
"additionalProperties": false,
"properties": {
"subjectPropertyAddress": {
"type": "string",
"description": "subject property street address on one line"
},
"subjectCity": {
"type": "string",
"description": "subject city"
},
"subjectState": {
"type": "string",
"description": "subject state code"
},
"subjectZip": {
"type": "string",
"description": "subject zip code (may be masked, e.g. 604XX)"
},
"borrowerName": {
"type": "string",
"description": "borrower name"
},
"county": {
"type": "string",
"description": "county"
},
"lenderClientName": {
"type": "string",
"description": "lender/client name"
},
"assignmentType": {
"type": "string",
"enum": [
"Purchase Transaction",
"Refinance Transaction",
"Other"
],
"description": "assignment type checkbox"
},
"propertyRightsAppraised": {
"type": "string",
"enum": [
"Fee Simple",
"Leasehold",
"Other"
],
"description": "property rights appraised"
},
"contractPrice": {
"type": "number",
"description": "contract price for the subject purchase"
},
"siteAreaSqft": {
"type": "number",
"description": "subject site/lot area in square feet"
},
"yearBuilt": {
"type": "integer",
"description": "subject year built"
},
"grossLivingAreaSqft": {
"type": "number",
"description": "subject gross living area above grade in square feet"
},
"bedrooms": {
"type": "integer",
"description": "subject number of bedrooms above grade"
},
"totalRooms": {
"type": "integer",
"description": "subject total rooms above grade"
},
"indicatedValueBySalesComparison": {
"type": "number",
"description": "indicated value by sales comparison approach"
},
"indicatedValueByCostApproach": {
"type": "number",
"description": "indicated value by cost approach (if developed)"
},
"finalAppraisedValue": {
"type": "number",
"description": "appraiser's final opinion of market value"
},
"comparables": {
"type": "array",
"description": "flattened sales-comparison grid, one entry per comparable sale with a sale price",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"comparableNumber": {
"type": "integer",
"description": "comparable sale number (1, 2, 3, ...)"
},
"address": {
"type": "string",
"description": "comparable street address on one line"
},
"proximityToSubject": {
"type": "string",
"description": "proximity to subject (e.g. 0.12 miles E)"
},
"salePrice": {
"type": "number",
"description": "comparable sale price"
},
"salePricePerGla": {
"type": "number",
"description": "sale price per gross living area sq.ft."
},
"grossLivingAreaSqft": {
"type": "number",
"description": "comparable gross living area in sq.ft."
},
"siteAreaSqft": {
"type": "number",
"description": "comparable site/lot area in sq.ft."
},
"locationAdjustment": {
"type": "number",
"description": "signed location line adjustment"
},
"glaAdjustment": {
"type": "number",
"description": "signed gross living area line adjustment"
},
"conditionAdjustment": {
"type": "number",
"description": "signed condition line adjustment"
},
"netAdjustmentTotal": {
"type": "number",
"description": "signed net adjustment total (negative if minus box checked)"
},
"adjustedSalePrice": {
"type": "number",
"description": "adjusted sale price of the comparable"
}
},
"required": [
"comparableNumber",
"address",
"salePrice",
"netAdjustmentTotal",
"adjustedSalePrice"
]
}
}
},
"required": [
"subjectPropertyAddress",
"borrowerName",
"lenderClientName",
"contractPrice",
"finalAppraisedValue",
"comparables"
]
} |