Datasets:
Tasks:
Document Question Answering
Size:
n<1K
Tags:
benchmark
document-ai
information-extraction
structured-extraction
key-information-extraction
ocr
License:
File size: 3,543 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 | {
"type": "object",
"additionalProperties": false,
"properties": {
"seriesOrComponentName": {
"type": "string",
"description": "Soil series or component name from the header"
},
"mapUnitSymbol": {
"type": "string",
"description": "Map unit symbol from the header"
},
"classification": {
"type": "string",
"description": "Soil taxonomic classification from the header"
},
"describers": {
"type": "string",
"description": "Describer initials or names from the Describer(s) field"
},
"date": {
"type": "string",
"description": "Date of description as printed on the form"
},
"weather": {
"type": "string",
"description": "Weather noted on the form"
},
"airTemperature": {
"type": "string",
"description": "Air temperature as printed, including unit"
},
"latitude": {
"type": "string",
"description": "Latitude as printed on the form"
},
"longitude": {
"type": "string",
"description": "Longitude as printed on the form"
},
"datum": {
"type": "string",
"description": "Geodetic datum from the Datum field"
},
"location": {
"type": "string",
"description": "Location description from the Location field"
},
"county": {
"type": "string",
"description": "County from the header"
},
"landscape": {
"type": "string",
"description": "Landscape from the header"
},
"landform": {
"type": "string",
"description": "Landform from the header"
},
"elevation": {
"type": "string",
"description": "Elevation as printed on the form"
},
"aspect": {
"type": "string",
"description": "Aspect as printed on the form"
},
"slopePercent": {
"type": "string",
"description": "Slope percent as printed on the form"
},
"drainage": {
"type": "string",
"description": "Drainage class from the Drainage field"
},
"parentMaterial": {
"type": "string",
"description": "Parent material description from the header"
},
"landCoverUse": {
"type": "string",
"description": "Land cover or use from the header"
},
"soilHorizons": {
"type": "array",
"description": "Rows of the handwritten soil horizon description table",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"observationMethod": {
"type": "string",
"description": "Observation method code (e.g. LP, SP)"
},
"depth": {
"type": "string",
"description": "Depth range of the horizon in inches as printed (e.g. 0 - 20)"
},
"horizon": {
"type": "string",
"description": "Horizon designation code (e.g. Ap, A, Bt1)"
},
"boundary": {
"type": "string",
"description": "Horizon boundary code (e.g. AS, CW, GW, AW, DW, DI)"
},
"matrixColorDry": {
"type": "string",
"description": "Dry matrix Munsell color notation"
},
"matrixColorMoist": {
"type": "string",
"description": "Moist matrix Munsell color notation"
},
"texture": {
"type": "string",
"description": "Soil texture class as printed (e.g. sil, sicl, cl)"
}
}
}
}
}
} |