Datasets:
Tasks:
Document Question Answering
Size:
n<1K
Tags:
benchmark
document-ai
information-extraction
structured-extraction
key-information-extraction
ocr
License:
File size: 3,956 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 | {
"type": "object",
"additionalProperties": false,
"properties": {
"sheetNumber": {
"type": "string",
"description": "Drawing sheet number shown in the title block"
},
"sheetTitle": {
"type": "string",
"description": "Title of the sheet shown in the title block"
},
"doorSchedule": {
"type": "array",
"description": "Rows of the DOOR SCHEDULE table",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"mark": {
"type": "string",
"description": "Door mark or tag from the Mark column"
},
"doorType": {
"type": "string",
"description": "Door type description"
},
"width": {
"type": "string",
"description": "Door width as printed, in feet-inches"
},
"height": {
"type": "string",
"description": "Door height as printed, in feet-inches"
},
"comments": {
"type": "string",
"description": "Comments for this door, if any"
}
}
}
},
"roomSchedule": {
"type": "array",
"description": "Rows of the ROOM SCHEDULE table",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"roomNo": {
"type": "string",
"description": "Room number from the No. column"
},
"name": {
"type": "string",
"description": "Room name"
},
"area": {
"type": "string",
"description": "Room area as printed, including unit"
},
"perimeter": {
"type": "string",
"description": "Room perimeter as printed, in feet-inches"
},
"floorFinish": {
"type": "string",
"description": "Floor finish, if specified"
},
"wallFinish": {
"type": "string",
"description": "Wall finish, if specified"
},
"ceilingFinish": {
"type": "string",
"description": "Ceiling finish, if specified"
},
"comments": {
"type": "string",
"description": "Comments for this room, if any"
}
}
}
},
"windowSchedule": {
"type": "array",
"description": "Rows of the WINDOW SCHEDULE table",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"mark": {
"type": "string",
"description": "Window mark or tag from the Mark column"
},
"type": {
"type": "string",
"description": "Window operation type",
"enum": [
"FIXED",
"Casement",
"AWNING"
]
},
"quantity": {
"type": "integer",
"description": "Quantity of this window type from the QTY column"
},
"width": {
"type": "string",
"description": "Window width as printed, in feet-inches"
},
"height": {
"type": "string",
"description": "Window height as printed, in feet-inches"
},
"shgcMax": {
"type": "number",
"description": "Maximum Solar Heat Gain Coefficient"
},
"uFactorMax": {
"type": "number",
"description": "Maximum U-Factor"
},
"tempered": {
"type": "boolean",
"description": "Whether the window is tempered (Yes in the Tempered column)"
},
"comments": {
"type": "string",
"description": "Comments for this window, if any"
}
}
}
}
}
} |