addedOutput schema / properties / anchors
Added value: +{
+ "items": {
+ "items": {
+ "type": "integer"
+ },
+ "type": "array"
+ },
+ "title": "Anchors",
+ "type": "array"
+}
addedOutput schema / properties / cta_instruction
Added value: +{
+ "title": "Cta Instruction",
+ "type": "string"
+}
addedOutput schema / properties / cta_text
Added value: +{
+ "title": "Cta Text",
+ "type": "string"
+}
addedOutput schema / properties / filename_a
Added value: +{
+ "title": "Filename A",
+ "type": "string"
+}
addedOutput schema / properties / filename_b
Added value: +{
+ "title": "Filename B",
+ "type": "string"
+}
addedOutput schema / properties / job_id_a / title
Added value: +"Job Id A"
addedOutput schema / properties / job_id_b / title
Added value: +"Job Id B"
addedOutput schema / properties / missing_text_layer
Added value: +{
+ "title": "Missing Text Layer",
+ "type": "string"
+}
removedOutput schema / properties / pages
Removed value: -{
- "items": {
- "description": "Comparison result payload for a single page pair.\n\nArgs:\n TypedDict: Structured data consumed by the compare widget.",
- "properties": {
- "height_a": {
- "type": "number"
- },
- "height_b": {
- "type": "number"
- },
- "page": {
- "type": "integer"
- },
- "regions_a": {
- "items": {
- "description": "Region box for comparison highlight overlays.\n\nArgs:\n TypedDict: Region metadata for one highlighted area.",
- "properties": {
- "type": {
- "type": "string"
- },
- "x0": {
- "type": "number"
- },
- "x1": {
- "type": "number"
- },
- "y0": {
- "type": "number"
- },
- "y1": {
- "type": "number"
- }
- },
- "required": [
- "type",
- "x0",
- "y0",
- "x1",
- "y1"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "regions_b": {
- "items": {
- "description": "Region box for comparison highlight overlays.\n\nArgs:\n TypedDict: Region metadata for one highlighted area.",
- "properties": {
- "type": {
- "type": "string"
- },
- "x0": {
- "type": "number"
- },
- "x1": {
- "type": "number"
- },
- "y0": {
- "type": "number"
- },
- "y1": {
- "type": "number"
- }
- },
- "required": [
- "type",
- "x0",
- "y0",
- "x1",
- "y1"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "width_a": {
- "type": "number"
- },
- "width_b": {
- "type": "number"
- }
- },
- "required": [
- "page",
- "width_a",
- "height_a",
- "width_b",
- "height_b",
- "regions_a",
- "regions_b"
- ],
- "type": "object"
- },
- "type": "array"
-}
addedOutput schema / properties / pages_a / items
Added value: +{
+ "description": "Comparison result for a single page of one document.\n\nArgs:\n TypedDict: Structured data consumed by the compare widget.",
+ "properties": {
+ "height": {
+ "title": "Height",
+ "type": "number"
+ },
+ "page": {
+ "title": "Page",
+ "type": "integer"
+ },
+ "regions": {
+ "items": {
+ "items": {
+ "type": "integer"
+ },
+ "type": "array"
+ },
+ "title": "Regions",
+ "type": "array"
+ },
+ "width": {
+ "title": "Width",
+ "type": "number"
+ }
+ },
+ "required": [
+ "page",
+ "width",
+ "height",
+ "regions"
+ ],
+ "title": "ComparePageResult",
+ "type": "object"
+}
addedOutput schema / properties / pages_a / title
Added value: +"Pages A"
changedOutput schema / properties / pages_a / type
Previous value: -"integer"New value: +"array"
addedOutput schema / properties / pages_b / items
Added value: +{
+ "description": "Comparison result for a single page of one document.\n\nArgs:\n TypedDict: Structured data consumed by the compare widget.",
+ "properties": {
+ "height": {
+ "title": "Height",
+ "type": "number"
+ },
+ "page": {
+ "title": "Page",
+ "type": "integer"
+ },
+ "regions": {
+ "items": {
+ "items": {
+ "type": "integer"
+ },
+ "type": "array"
+ },
+ "title": "Regions",
+ "type": "array"
+ },
+ "width": {
+ "title": "Width",
+ "type": "number"
+ }
+ },
+ "required": [
+ "page",
+ "width",
+ "height",
+ "regions"
+ ],
+ "title": "ComparePageResult",
+ "type": "object"
+}
addedOutput schema / properties / pages_b / title
Added value: +"Pages B"
changedOutput schema / properties / pages_b / type
Previous value: -"integer"New value: +"array"
addedOutput schema / properties / pdf_url_a / title
Added value: +"Pdf Url A"
addedOutput schema / properties / pdf_url_b / title
Added value: +"Pdf Url B"
addedOutput schema / properties / reply_note
Added value: +{
+ "title": "Reply Note",
+ "type": "string"
+}
addedOutput schema / properties / session_id / title
Added value: +"Session Id"
addedOutput schema / properties / spots
Added value: +{
+ "description": "Aggregate counts for word-level differences.\n\nArgs:\n TypedDict: Total difference counts.",
+ "properties": {
+ "deleted": {
+ "title": "Deleted",
+ "type": "integer"
+ },
+ "inserted": {
+ "title": "Inserted",
+ "type": "integer"
+ },
+ "moved": {
+ "title": "Moved",
+ "type": "integer"
+ },
+ "replaced": {
+ "title": "Replaced",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "deleted",
+ "inserted",
+ "replaced",
+ "moved"
+ ],
+ "title": "CompareTotals",
+ "type": "object"
+}
addedOutput schema / properties / total_pages / title
Added value: +"Total Pages"
addedOutput schema / properties / totals / properties / deleted / title
Added value: +"Deleted"
addedOutput schema / properties / totals / properties / inserted / title
Added value: +"Inserted"
addedOutput schema / properties / totals / properties / moved
Added value: +{
+ "title": "Moved",
+ "type": "integer"
+}
addedOutput schema / properties / totals / properties / replaced / title
Added value: +"Replaced"
changedOutput schema / properties / totals / required
Previous value: -[
- "deleted",
- "inserted",
- "replaced"
-]New value: +[
+ "deleted",
+ "inserted",
+ "replaced",
+ "moved"
+]
addedOutput schema / properties / totals / title
Added value: +"CompareTotals"
changedOutput schema / required
Previous value: -[
- "session_id",
- "job_id_a",
- "job_id_b",
- "pdf_url_a",
- "pdf_url_b",
- "pages_a",
- "pages_b",
- "total_pages",
- "totals",
- "pages"
-]New value: +[
+ "session_id",
+ "job_id_a",
+ "job_id_b",
+ "pdf_url_a",
+ "pdf_url_b",
+ "filename_a",
+ "filename_b",
+ "total_pages",
+ "totals",
+ "spots",
+ "pages_a",
+ "pages_b",
+ "anchors",
+ "missing_text_layer",
+ "cta_instruction",
+ "cta_text",
+ "reply_note"
+]
addedOutput schema / title
Added value: +"ComparePdfsResponse"