action contract_p_post_document_process_table_annotation { label: "Process a table-level annotation" description: "A fast and convenient annotation tool that converts a table-level annotation to cell-level feedback.\n\n**Permission required:** review" provider: contract_p method: POST path: "/documents/{document_id}/process_table_annotation" encoding: json input: { type: "object" properties: { bottom_right: { type: "array" items: { type: "integer" } } columns: { type: "array" items: { type: "object" properties: { field_name: { type: "string" } x_bounds: { type: "array" items: { type: "integer" } } } } } first_row_y_bounds: { type: "array" items: { type: "integer" } } header_bottom_y: { type: "integer" } name: { type: "string" } top_left: { type: "array" items: { type: "integer" } } } } output: { type: "object" additionalProperties: true } }